Avoid unnecessary #include; NFC

llvm-svn: 264958
This commit is contained in:
Matthias Braun 2016-03-30 22:45:58 +00:00
parent b64d3d61e3
commit 99ce7ccf32
1 changed files with 2 additions and 1 deletions

View 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.