diff options
Diffstat (limited to 'src/analyzer.js')
-rw-r--r-- | src/analyzer.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/analyzer.js b/src/analyzer.js index 44e62ad2..c6c7b028 100644 --- a/src/analyzer.js +++ b/src/analyzer.js @@ -719,6 +719,7 @@ function analyzer(data) { a.ident == b.value.ident && func.variables[a.ident].uses == 1) { // print("// LOADSUSPECT: " + i + ',' + (i+1) + ':' + a.ident + ':' + b.value.ident); a.intertype = 'fastgetelementptrload'; + a.value.valueType = b.value.valueType; a.ident = b.ident; b.intertype = null; i++; |