diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-28 00:15:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-28 00:15:18 +0000 |
commit | 80c062001efbf1d3946d5cc4fcea7ad2d876ba64 (patch) | |
tree | 9ae391b4ffa9e803a9c8fa9336a08d0738879ee2 /lib | |
parent | be9dfcef82c58063708e039bea3cf972ba41581b (diff) | |
download | external_llvm-80c062001efbf1d3946d5cc4fcea7ad2d876ba64.zip external_llvm-80c062001efbf1d3946d5cc4fcea7ad2d876ba64.tar.gz external_llvm-80c062001efbf1d3946d5cc4fcea7ad2d876ba64.tar.bz2 |
don't emit constant pools twice.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94706 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/MSP430/AsmPrinter/MSP430AsmPrinter.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Target/MSP430/AsmPrinter/MSP430AsmPrinter.cpp b/lib/Target/MSP430/AsmPrinter/MSP430AsmPrinter.cpp index 5d98dcd..3064f77 100644 --- a/lib/Target/MSP430/AsmPrinter/MSP430AsmPrinter.cpp +++ b/lib/Target/MSP430/AsmPrinter/MSP430AsmPrinter.cpp @@ -110,7 +110,6 @@ bool MSP430AsmPrinter::runOnMachineFunction(MachineFunction &MF) { O << "\t.size\t" << *CurrentFnSym << ", .-" << *CurrentFnSym << '\n'; // Print out constants referenced by the function - EmitConstantPool(MF.getConstantPool()); EmitJumpTableInfo(MF); // We didn't modify anything |