[llvm-commits] CVS: llvm/tools/llc/llc.cpp
Chris Lattner
lattner at cs.uiuc.edu
Tue Oct 29 15:49:14 PST 2002
Changes in directory llvm/tools/llc:
llc.cpp updated: 1.62 -> 1.63
---
Log message:
* Privatize the TargetName
---
Diffs of the changes:
Index: llvm/tools/llc/llc.cpp
diff -u llvm/tools/llc/llc.cpp:1.62 llvm/tools/llc/llc.cpp:1.63
--- llvm/tools/llc/llc.cpp:1.62 Tue Oct 29 15:12:46 2002
+++ llvm/tools/llc/llc.cpp Tue Oct 29 15:48:33 2002
@@ -283,7 +283,7 @@
// Ask the target to add backend passes as neccesary
if (Target.addPassesToEmitAssembly(Passes, *Out)) {
- cerr << argv[0] << ": target '" << Target.TargetName
+ cerr << argv[0] << ": target '" << Target.getName()
<< " does not support static compilation!\n";
} else {
// Run our queue of passes all at once now, efficiently.
More information about the llvm-commits
mailing list