summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/AsmPrinter.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2012-01-26 20:44:57 +0000
committerChris Lattner <sabre@nondot.org>2012-01-26 20:44:57 +0000
commit5b676ce7932cf60d4fd6d101323d8d54b8395804 (patch)
tree992c4ab26599f5c2e1bf2d288a2327be8b8ac7c6 /include/llvm/CodeGen/AsmPrinter.h
parenta7c698823e4ffa4589bde1ff6de60b6af0cdba5a (diff)
downloadllvm-5b676ce7932cf60d4fd6d101323d8d54b8395804.tar.gz
llvm-5b676ce7932cf60d4fd6d101323d8d54b8395804.tar.bz2
llvm-5b676ce7932cf60d4fd6d101323d8d54b8395804.tar.xz
tidy up forward declarations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149078 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/AsmPrinter.h')
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index 303c6c21f4..50bb8e4801 100644
--- a/include/llvm/CodeGen/AsmPrinter.h
+++ b/include/llvm/CodeGen/AsmPrinter.h
@@ -23,11 +23,6 @@ namespace llvm {
class BlockAddress;
class GCStrategy;
class Constant;
- class ConstantArray;
- class ConstantFP;
- class ConstantInt;
- class ConstantStruct;
- class ConstantVector;
class GCMetadataPrinter;
class GlobalValue;
class GlobalVariable;
@@ -37,8 +32,6 @@ namespace llvm {
class MachineLocation;
class MachineLoopInfo;
class MachineLoop;
- class MachineConstantPool;
- class MachineConstantPoolEntry;
class MachineConstantPoolValue;
class MachineJumpTableInfo;
class MachineModuleInfo;
@@ -268,8 +261,9 @@ namespace llvm {
virtual void EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV);
- /// EmitXXStructor - Targets can override this to change how global constants
- /// that are part of a C++ static/global constructor list are emitted.
+ /// EmitXXStructor - Targets can override this to change how global
+ /// constants that are part of a C++ static/global constructor list are
+ /// emitted.
virtual void EmitXXStructor(const Constant *CV) {
EmitGlobalConstant(CV);
}