diff options
author | Alon Zakai <azakai@mozilla.com> | 2011-03-03 07:39:33 -0800 |
---|---|---|
committer | Alon Zakai <azakai@mozilla.com> | 2011-03-03 07:39:33 -0800 |
commit | 4d51d0b2762c186a6071df547b772b12961aa368 (patch) | |
tree | d79db04229e1feec8d5770bc639cba107fa46bd5 /src | |
parent | c3408af2696ab4c0649495b63ec912f55156890b (diff) |
autodebug improvements
Diffstat (limited to 'src')
-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 66013f26..db223c36 100644 --- a/src/analyzer.js +++ b/src/analyzer.js @@ -69,7 +69,7 @@ function analyzer(data) { // Internal line if (!currLabelFinished) { item.functions.slice(-1)[0].lines.push(subItem); - item.functions.slice(-1)[0].labels.slice(-1)[0].lines.push(subItem); + item.functions.slice(-1)[0].labels.slice(-1)[0].lines.push(subItem); // If this line fails, perhaps missing a label? LLVM_STYLE related? if (subItem.intertype === 'branch') { currLabelFinished = true; } |