diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-09-27 21:02:21 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-09-27 21:02:21 -0700 |
commit | 966bbdb366663213dedee50fb811ac4ee1eaa266 (patch) | |
tree | 52fcb8c86509242408767bf4ece1dc585985d965 /src/intertyper.js | |
parent | f8de87e641f8ed42fc2dd547ebf869bc6f1793c9 (diff) |
fix for parsing landingpad elements
Diffstat (limited to 'src/intertyper.js')
-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 d431d54f..67feafc6 100644 --- a/src/intertyper.js +++ b/src/intertyper.js @@ -54,7 +54,7 @@ function intertyper(data, parseFunctions, baseLineNum) { if (inContinual || new RegExp(/^\ +to.*/g).test(line) || new RegExp(/^\ +catch .*/g).test(line) || new RegExp(/^\ +filter .*/g).test(line) - || new RegExp(/^\ +cleanup .*/g).test(line)) { + || new RegExp(/^\ +cleanup.*/g).test(line)) { // to after invoke or landingpad second line ret.slice(-1)[0].lineText += line; if (new RegExp(/^\ +\]/g).test(line)) { // end of llvm switch |