diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-28 00:19:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-28 00:19:24 +0000 |
commit | 8559cf724e8fb6a74ee227709b3a634edb2f46b4 (patch) | |
tree | b278f5110967c3f4f2547bdef689740a9b047d52 /include/llvm | |
parent | dea78355c85f20ad39b4a20586d8c952364ded9a (diff) | |
download | external_llvm-8559cf724e8fb6a74ee227709b3a634edb2f46b4.tar.gz external_llvm-8559cf724e8fb6a74ee227709b3a634edb2f46b4.tar.bz2 external_llvm-8559cf724e8fb6a74ee227709b3a634edb2f46b4.zip |
Drop the argument to AsmPrinter::EmitConstantPool and make it virtual.
Overload it in the ARM backend to do nothing, since is does insane
constant pool emission.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94708 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/CodeGen/AsmPrinter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h index 589788a7cc..31cc868f05 100644 --- a/include/llvm/CodeGen/AsmPrinter.h +++ b/include/llvm/CodeGen/AsmPrinter.h @@ -220,7 +220,7 @@ namespace llvm { /// used to print out constants which have been "spilled to memory" by /// the code generator. /// - void EmitConstantPool(const MachineConstantPool *MCP); + virtual void EmitConstantPool(); /// EmitJumpTableInfo - Print assembly representations of the jump tables /// used by the current function to the current output stream. |