From cef3678a9053fe7d2dfd4fcdebc50391de0bf51c Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Sat, 21 Sep 2013 12:31:15 -0500 Subject: initialize currLabelFinished --- src/analyzer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/analyzer.js b/src/analyzer.js index 3f7a5649..750f2a4c 100644 --- a/src/analyzer.js +++ b/src/analyzer.js @@ -49,7 +49,7 @@ function analyzer(data, sidePass) { // Functions & labels item.functions = []; - var currLabelFinished; // Sometimes LLVM puts a branch in the middle of a label. We need to ignore all lines after that. + var currLabelFinished = false; // Sometimes LLVM puts a branch in the middle of a label. We need to ignore all lines after that. item.items.sort(function(a, b) { return a.lineNum - b.lineNum }); for (var i = 0; i < item.items.length; i++) { var subItem = item.items[i]; -- cgit v1.2.3-18-g5258