commit | 9530a6f3cd8d071c260baa12f28d66f9d6f983d1 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Mon Feb 11 22:35:46 2002 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Mon Feb 11 22:35:46 2002 +0000 |
tree | 9f09243fcfb9317d5c45e7105c0e85e410af24ff | |
parent | 355df3f73d6eabc7ce236c0204fe155996543d08 [diff] [blame] |
Write llvm bytecode to output .s file as last step of LLC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1728 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/SparcV9/SparcV9TargetMachine.cpp b/lib/Target/SparcV9/SparcV9TargetMachine.cpp index 422dda0..14be992 100644 --- a/lib/Target/SparcV9/SparcV9TargetMachine.cpp +++ b/lib/Target/SparcV9/SparcV9TargetMachine.cpp
@@ -269,4 +269,7 @@ // Emit Module level assembly after all of the methods have been processed. PM.add(getModuleAsmPrinterPass(PM, Out)); + + // Emit bytecode to the sparc assembly file into its special section next + PM.add(getEmitBytecodeToAsmPass(Out)); }