From: Matthias Braun Date: Wed, 30 Mar 2016 22:45:58 +0000 (+0000) Subject: Avoid unnecessary #include; NFC X-Git-Tag: llvmorg-3.9.0-rc1~10438 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=99ce7ccf325554280dfed1c5a012ffec87be30ba;p=platform%2Fupstream%2Fllvm.git Avoid unnecessary #include; NFC llvm-svn: 264958 --- diff --git a/llvm/include/llvm/CodeGen/FastISel.h b/llvm/include/llvm/CodeGen/FastISel.h index d1d3229d..7d228f2 100644 --- a/llvm/include/llvm/CodeGen/FastISel.h +++ b/llvm/include/llvm/CodeGen/FastISel.h @@ -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.