diff options
author | alon@honor <none@none> | 2010-10-24 22:49:26 -0700 |
---|---|---|
committer | alon@honor <none@none> | 2010-10-24 22:49:26 -0700 |
commit | 7c56be83f6807300aac5ab4de79f7754bf9c0eb2 (patch) | |
tree | 694cadc51daab4852617ac2f85d0ee39c8baaea9 /src/analyzer.js | |
parent | 1522f18aab92cfa3e9a58e1eefc40aefcfdc946c (diff) |
progress on cleaning up Runtime
Diffstat (limited to 'src/analyzer.js')
-rw-r--r-- | src/analyzer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyzer.js b/src/analyzer.js index 61dfbcca..671ba85a 100644 --- a/src/analyzer.js +++ b/src/analyzer.js @@ -84,7 +84,7 @@ function analyzer(data) { if (type.length == 1) return; if (data.types[type]) return; if (['internal', 'inbounds', 'void'].indexOf(type) != -1) return; - if (isNumberType(type)) return; + if (Runtime.isNumberType(type)) return; // 'blocks': [14 x %struct.X] etc. If this is a pointer, we need // to look at the underlying type - it was not defined explicitly |