diff options
author | Matthias Braun <matze@braunis.de> | 2016-03-30 22:45:58 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2016-03-30 22:45:58 +0000 |
commit | 99ce7ccf325554280dfed1c5a012ffec87be30ba (patch) | |
tree | c190b22060302a3ba6c7477d08aba53febba23c2 | |
parent | b64d3d61e321cb8e7907f38ac93ba94359179462 (diff) | |
download | bcm5719-llvm-99ce7ccf325554280dfed1c5a012ffec87be30ba.tar.gz bcm5719-llvm-99ce7ccf325554280dfed1c5a012ffec87be30ba.zip |
Avoid unnecessary #include; NFC
llvm-svn: 264958
-rw-r--r-- | llvm/include/llvm/CodeGen/FastISel.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/include/llvm/CodeGen/FastISel.h b/llvm/include/llvm/CodeGen/FastISel.h index d1d3229d5f8..7d228f235de 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. |