[llvm] r264958 - Avoid unnecessary #include; NFC

Matthias Braun via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 30 15:45:59 PDT 2016


Author: matze
Date: Wed Mar 30 17:45:58 2016
New Revision: 264958

URL: http://llvm.org/viewvc/llvm-project?rev=264958&view=rev
Log:
Avoid unnecessary #include; NFC

Modified:
    llvm/trunk/include/llvm/CodeGen/FastISel.h

Modified: llvm/trunk/include/llvm/CodeGen/FastISel.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/FastISel.h?rev=264958&r1=264957&r2=264958&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/FastISel.h (original)
+++ llvm/trunk/include/llvm/CodeGen/FastISel.h Wed Mar 30 17:45:58 2016
@@ -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.




More information about the llvm-commits mailing list