summaryrefslogtreecommitdiff
path: root/src/intertyper.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-12-03 15:59:11 -0800
committerAlon Zakai <alonzakai@gmail.com>2011-12-03 15:59:11 -0800
commit3d4a6d6d24fc5a220ba4b32d9bdae069389a084e (patch)
tree9d56985453e9b545fa3ff2b7bc069dac238f9fae /src/intertyper.js
parent684cf9c78e20899f8e7d39eda4df17d9756dd44d (diff)
debug info cleanup
Diffstat (limited to 'src/intertyper.js')
-rw-r--r--src/intertyper.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/intertyper.js b/src/intertyper.js
index 86da2a1f..834345bf 100644
--- a/src/intertyper.js
+++ b/src/intertyper.js
@@ -21,14 +21,6 @@ function intertyper(data, sidePass, baseLineNum) {
LLVM_STYLE = (data.indexOf('<label>') == -1 && data.indexOf('entry:') != -1) ? 'old' : 'new';
//dprint('LLVM_STYLE: ' + LLVM_STYLE);
}
-
- // If the source contains debug info as LLVM metadata, process that out (and save the debugging info for later)
- for (var i = data.length-1; i >= 0; i--) {
- if (/^!\d+ = metadata .*/.exec(data[i])) {
- Debugging.processMetadata(data);
- break;
- }
- }
}
// Substrate