aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-22 19:19:12 +0000
committerChris Lattner <sabre@nondot.org>2009-08-22 19:19:12 +0000
commit2336e47116b60e61869348c8af7c61aebfd9584d (patch)
treed01136ec3a7824f2c242b08d08c6d2b97812f8d7
parentc3d25a1ce7c6718d6304464aacb2005c1ae99de7 (diff)
downloadexternal_llvm-2336e47116b60e61869348c8af7c61aebfd9584d.tar.gz
external_llvm-2336e47116b60e61869348c8af7c61aebfd9584d.tar.bz2
external_llvm-2336e47116b60e61869348c8af7c61aebfd9584d.zip
tweak #includes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79744 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/MC/MCAssembler.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/MC/MCAssembler.cpp b/lib/MC/MCAssembler.cpp
index 9bd704a0e2..99d2988dc8 100644
--- a/lib/MC/MCAssembler.cpp
+++ b/lib/MC/MCAssembler.cpp
@@ -8,17 +8,14 @@
//===----------------------------------------------------------------------===//
#include "llvm/MC/MCAssembler.h"
-
+#include "llvm/MC/MCSectionMachO.h"
+#include "llvm/Target/TargetMachOWriterInfo.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/ADT/StringMap.h"
#include "llvm/ADT/Twine.h"
-#include "llvm/MC/MCSectionMachO.h"
-#include "llvm/Support/DataTypes.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/raw_ostream.h"
-#include "llvm/Target/TargetMachOWriterInfo.h"
-
using namespace llvm;
class MachObjectWriter;