[llvm-commits] CVS: llvm/tools/llc/llc.cpp
Jim Laskey
jlaskey at apple.com
Wed Jan 4 14:28:39 PST 2006
Changes in directory llvm/tools/llc:
llc.cpp updated: 1.124 -> 1.125
---
Log message:
Applied some recommend changes from sabre. The dominate one beginning "let the
pass manager do it's thing." Fixes crash when compiling -g files and suppresses
dwarf statements if no debug info is present.
---
Diffs of the changes: (+0 -3)
llc.cpp | 3 ---
1 files changed, 3 deletions(-)
Index: llvm/tools/llc/llc.cpp
diff -u llvm/tools/llc/llc.cpp:1.124 llvm/tools/llc/llc.cpp:1.125
--- llvm/tools/llc/llc.cpp:1.124 Wed Jan 4 07:42:02 2006
+++ llvm/tools/llc/llc.cpp Wed Jan 4 16:28:25 2006
@@ -239,9 +239,6 @@
}
}
- // Set up collection of debug information
- Passes.add(createDebugInfoPass());
-
// Ask the target to add backend passes as necessary.
if (Target.addPassesToEmitFile(Passes, *Out, FileType, Fast)) {
std::cerr << argv[0] << ": target '" << Target.getName()
More information about the llvm-commits
mailing list