[llvm-commits] CVS: llvm/lib/Target/SparcV8/SparcV8TargetMachine.cpp

Chris Lattner lattner at cs.uiuc.edu
Sat Feb 28 14:22:01 PST 2004


Changes in directory llvm/lib/Target/SparcV8:

SparcV8TargetMachine.cpp updated: 1.2 -> 1.3

---
Log message:

Change this so that LLC actually tries to run the code generator, though it will 
immediately abort due to lack of an instruction selector. :)


---
Diffs of the changes:  (+1 -1)

Index: llvm/lib/Target/SparcV8/SparcV8TargetMachine.cpp
diff -u llvm/lib/Target/SparcV8/SparcV8TargetMachine.cpp:1.2 llvm/lib/Target/SparcV8/SparcV8TargetMachine.cpp:1.3
--- llvm/lib/Target/SparcV8/SparcV8TargetMachine.cpp:1.2	Sat Feb 28 13:52:49 2004
+++ llvm/lib/Target/SparcV8/SparcV8TargetMachine.cpp	Sat Feb 28 14:21:45 2004
@@ -45,7 +45,7 @@
   PM.add(createPrologEpilogCodeInserter());
   // <insert assembly code output passes here>
   PM.add(createMachineCodeDeleter());
-  return true; // change to `return false' when this actually works.
+  return false;
 }
 
 /// addPassesToJITCompile - Add passes to the specified pass manager to





More information about the llvm-commits mailing list