[llvm-commits] [llvm] r60456 - /llvm/trunk/include/llvm/CodeGen/MachineConstantPool.h
Dan Gohman
gohman at apple.com
Tue Dec 2 17:53:18 PST 2008
Author: djg
Date: Tue Dec 2 19:53:18 2008
New Revision: 60456
URL: http://llvm.org/viewvc/llvm-project?rev=60456&view=rev
Log:
Replace a #include with a forward-declaration.
Modified:
llvm/trunk/include/llvm/CodeGen/MachineConstantPool.h
Modified: llvm/trunk/include/llvm/CodeGen/MachineConstantPool.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/MachineConstantPool.h?rev=60456&r1=60455&r2=60456&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/MachineConstantPool.h (original)
+++ llvm/trunk/include/llvm/CodeGen/MachineConstantPool.h Tue Dec 2 19:53:18 2008
@@ -15,7 +15,6 @@
#ifndef LLVM_CODEGEN_MACHINECONSTANTPOOL_H
#define LLVM_CODEGEN_MACHINECONSTANTPOOL_H
-#include "llvm/ADT/FoldingSet.h"
#include <cassert>
#include <vector>
@@ -23,6 +22,7 @@
class AsmPrinter;
class Constant;
+class FoldingSetNodeID;
class TargetData;
class TargetMachine;
class Type;
More information about the llvm-commits
mailing list