X86ISelDAGToDAG.cpp - remove unnecessary includes. NFC.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Sun, 26 Apr 2020 13:50:39 +0000 (14:50 +0100)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Sun, 26 Apr 2020 13:50:53 +0000 (14:50 +0100)
The X86 specific headers have to include these so we don't need to duplicate.

llvm/lib/Target/X86/X86ISelDAGToDAG.cpp

index 355f404..a6b06bd 100644 (file)
@@ -17,8 +17,6 @@
 #include "X86Subtarget.h"
 #include "X86TargetMachine.h"
 #include "llvm/ADT/Statistic.h"
-#include "llvm/CodeGen/MachineFrameInfo.h"
-#include "llvm/CodeGen/MachineFunction.h"
 #include "llvm/CodeGen/SelectionDAGISel.h"
 #include "llvm/Config/llvm-config.h"
 #include "llvm/IR/ConstantRange.h"
@@ -31,9 +29,6 @@
 #include "llvm/Support/ErrorHandling.h"
 #include "llvm/Support/KnownBits.h"
 #include "llvm/Support/MathExtras.h"
-#include "llvm/Support/raw_ostream.h"
-#include "llvm/Target/TargetMachine.h"
-#include "llvm/Target/TargetOptions.h"
 #include <stdint.h>
 using namespace llvm;