|
@@ -16,34 +16,34 @@
|
|
|
#include "DIE.h"
|
|
|
#include "DwarfAccelTable.h"
|
|
|
#include "DwarfCompileUnit.h"
|
|
|
+#include "llvm/ADT/STLExtras.h"
|
|
|
+#include "llvm/ADT/Statistic.h"
|
|
|
+#include "llvm/ADT/StringExtras.h"
|
|
|
+#include "llvm/ADT/Triple.h"
|
|
|
+#include "llvm/CodeGen/MachineFunction.h"
|
|
|
+#include "llvm/CodeGen/MachineModuleInfo.h"
|
|
|
#include "llvm/Constants.h"
|
|
|
-#include "llvm/DebugInfo.h"
|
|
|
#include "llvm/DIBuilder.h"
|
|
|
-#include "llvm/Module.h"
|
|
|
+#include "llvm/DataLayout.h"
|
|
|
+#include "llvm/DebugInfo.h"
|
|
|
#include "llvm/Instructions.h"
|
|
|
-#include "llvm/CodeGen/MachineFunction.h"
|
|
|
-#include "llvm/CodeGen/MachineModuleInfo.h"
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
|
|
#include "llvm/MC/MCSection.h"
|
|
|
#include "llvm/MC/MCStreamer.h"
|
|
|
#include "llvm/MC/MCSymbol.h"
|
|
|
-#include "llvm/DataLayout.h"
|
|
|
-#include "llvm/Target/TargetFrameLowering.h"
|
|
|
-#include "llvm/Target/TargetLoweringObjectFile.h"
|
|
|
-#include "llvm/Target/TargetMachine.h"
|
|
|
-#include "llvm/Target/TargetRegisterInfo.h"
|
|
|
-#include "llvm/Target/TargetOptions.h"
|
|
|
-#include "llvm/ADT/Statistic.h"
|
|
|
-#include "llvm/ADT/STLExtras.h"
|
|
|
-#include "llvm/ADT/StringExtras.h"
|
|
|
-#include "llvm/ADT/Triple.h"
|
|
|
+#include "llvm/Module.h"
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
-#include "llvm/Support/ValueHandle.h"
|
|
|
#include "llvm/Support/FormattedStream.h"
|
|
|
-#include "llvm/Support/Timer.h"
|
|
|
#include "llvm/Support/Path.h"
|
|
|
+#include "llvm/Support/Timer.h"
|
|
|
+#include "llvm/Support/ValueHandle.h"
|
|
|
+#include "llvm/Target/TargetFrameLowering.h"
|
|
|
+#include "llvm/Target/TargetLoweringObjectFile.h"
|
|
|
+#include "llvm/Target/TargetMachine.h"
|
|
|
+#include "llvm/Target/TargetOptions.h"
|
|
|
+#include "llvm/Target/TargetRegisterInfo.h"
|
|
|
using namespace llvm;
|
|
|
|
|
|
static cl::opt<bool> DisableDebugInfoPrinting("disable-debug-info-print",
|