diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ast_utils.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ast_utils.h b/src/ast_utils.h index f10fb40eb..3396f5ed5 100644 --- a/src/ast_utils.h +++ b/src/ast_utils.h @@ -742,6 +742,16 @@ struct ExpressionAnalyzer { continue; } hash(curr->_id); + // we often don't need to hash the type, as it is tied to other values + // we are hashing anyhow, but there are exceptions: for example, a + // get_local's type is determined by the function, so if we are + // hashing only expression fragments, then two from different + // functions may turn out the same even if the type differs. Likewise, + // if we hash between modules, then we need to take int account + // call_imports type, etc. The simplest thing is just to hash the + // type for all of them. + hash(curr->type); + #define PUSH(clazz, what) \ stack.push_back(curr->cast<clazz>()->what); #define HASH(clazz, what) \ |