Change this so that LLC actually tries to run the code generator, though it will
authorChris Lattner <sabre@nondot.org>
Sat, 28 Feb 2004 20:21:45 +0000 (20:21 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 28 Feb 2004 20:21:45 +0000 (20:21 +0000)
immediately abort due to lack of an instruction selector. :)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11963 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Sparc/SparcTargetMachine.cpp
lib/Target/SparcV8/SparcV8TargetMachine.cpp

index d749a7c0a944f7634848871e50addef73840fc0b..15401b103e63bb9550f2863b953f93596cfc46fb 100644 (file)
@@ -45,7 +45,7 @@ bool SparcV8TargetMachine::addPassesToEmitAssembly(PassManager &PM,
   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
index d749a7c0a944f7634848871e50addef73840fc0b..15401b103e63bb9550f2863b953f93596cfc46fb 100644 (file)
@@ -45,7 +45,7 @@ bool SparcV8TargetMachine::addPassesToEmitAssembly(PassManager &PM,
   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