diff options
author | Chris Lattner <sabre@nondot.org> | 2004-02-28 20:21:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-02-28 20:21:45 +0000 |
commit | 9ff6ba1ea1692a3bbef8ffd6ad6a4a724d4b9667 (patch) | |
tree | 5f1c7dc603ae5c5f909a20cab4c085d266bb3cf6 /lib/Target/Sparc/SparcTargetMachine.cpp | |
parent | d62276a66e7678fbbc1e7ac3c45b55de2647b4de (diff) |
Change this so that LLC actually tries to run the code generator, though it will
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
Diffstat (limited to 'lib/Target/Sparc/SparcTargetMachine.cpp')
-rw-r--r-- | lib/Target/Sparc/SparcTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Sparc/SparcTargetMachine.cpp b/lib/Target/Sparc/SparcTargetMachine.cpp index d749a7c0a9..15401b103e 100644 --- a/lib/Target/Sparc/SparcTargetMachine.cpp +++ b/lib/Target/Sparc/SparcTargetMachine.cpp @@ -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 |