diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-06-14 14:14:08 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-06-14 14:14:08 -0700 |
commit | 1bdb3a5e9f3521dfd856a3a4363557eab4968bd8 (patch) | |
tree | f3d26e344da14974a0b98f1c01f450fbcf8ac474 /src | |
parent | 031f922df9e336a700de8de2294a60a66a8daf1f (diff) |
ignore phi assigns of undef
Diffstat (limited to 'src')
-rw-r--r-- | src/intertyper.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intertyper.js b/src/intertyper.js index 6b91f527..fbad353a 100644 --- a/src/intertyper.js +++ b/src/intertyper.js @@ -794,7 +794,7 @@ function intertyper(data, sidePass, baseLineNums) { value: parseLLVMSegment(typeToken.concat(subSegments[0])) }; return ret; - }); + }).filter(function(param) { return param.value && param.value.ident != 'undef' }); this.forwardItem(item, 'Reintegrator'); } }); |