Avoid unnecessary #include; NFC
authorMatthias Braun <matze@braunis.de>
Wed, 30 Mar 2016 22:45:58 +0000 (22:45 +0000)
committerMatthias Braun <matze@braunis.de>
Wed, 30 Mar 2016 22:45:58 +0000 (22:45 +0000)
llvm-svn: 264958

llvm/include/llvm/CodeGen/FastISel.h

index d1d3229..7d228f2 100644 (file)
@@ -16,7 +16,6 @@
 #define LLVM_CODEGEN_FASTISEL_H
 
 #include "llvm/ADT/DenseMap.h"
-#include "llvm/CodeGen/CallingConvLower.h"
 #include "llvm/CodeGen/MachineBasicBlock.h"
 #include "llvm/IR/CallingConv.h"
 #include "llvm/IR/IntrinsicInst.h"
@@ -24,6 +23,8 @@
 
 namespace llvm {
 
+class MachineConstantPool;
+
 /// \brief This is a fast-path instruction selection class that generates poor
 /// code and doesn't support illegal types or non-trivial lowering, but runs
 /// quickly.