diff options
-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 |