summaryrefslogtreecommitdiff
path: root/lib/MC/MCDisassembler
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-12-04 07:12:27 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-12-04 07:12:27 +0000
commita1514e24cc24b050f53a12650e047799358833a1 (patch)
tree44eeca62c167ea741c93dfdc7ed31b3094d20c32 /lib/MC/MCDisassembler
parente6f2df961065e3b723ef0fc78441f07c5577acd2 (diff)
downloadllvm-a1514e24cc24b050f53a12650e047799358833a1.tar.gz
llvm-a1514e24cc24b050f53a12650e047799358833a1.tar.bz2
llvm-a1514e24cc24b050f53a12650e047799358833a1.tar.xz
Sort includes for all of the .h files under the 'lib' tree. These were
missed in the first pass because the script didn't yet handle include guards. Note that the script is now able to handle all of these headers without manual edits. =] git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169224 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCDisassembler')
-rw-r--r--lib/MC/MCDisassembler/Disassembler.h2
-rw-r--r--lib/MC/MCDisassembler/EDDisassembler.h4
-rw-r--r--lib/MC/MCDisassembler/EDInst.h2
3 files changed, 3 insertions, 5 deletions
diff --git a/lib/MC/MCDisassembler/Disassembler.h b/lib/MC/MCDisassembler/Disassembler.h
index 322abd5d63..28cf04b95d 100644
--- a/lib/MC/MCDisassembler/Disassembler.h
+++ b/lib/MC/MCDisassembler/Disassembler.h
@@ -18,10 +18,10 @@
#define LLVM_MC_DISASSEMBLER_H
#include "llvm-c/Disassembler.h"
-#include <string>
#include "llvm/ADT/OwningPtr.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/Support/raw_ostream.h"
+#include <string>
namespace llvm {
class MCContext;
diff --git a/lib/MC/MCDisassembler/EDDisassembler.h b/lib/MC/MCDisassembler/EDDisassembler.h
index 6f71908d2b..942b9067e6 100644
--- a/lib/MC/MCDisassembler/EDDisassembler.h
+++ b/lib/MC/MCDisassembler/EDDisassembler.h
@@ -17,12 +17,10 @@
#define LLVM_EDDISASSEMBLER_H
#include "EDInfo.h"
-
#include "llvm/ADT/OwningPtr.h"
#include "llvm/ADT/Triple.h"
-#include "llvm/Support/raw_ostream.h"
#include "llvm/Support/Mutex.h"
-
+#include "llvm/Support/raw_ostream.h"
#include <map>
#include <set>
#include <string>
diff --git a/lib/MC/MCDisassembler/EDInst.h b/lib/MC/MCDisassembler/EDInst.h
index 6b78dc826c..cc0b562130 100644
--- a/lib/MC/MCDisassembler/EDInst.h
+++ b/lib/MC/MCDisassembler/EDInst.h
@@ -16,8 +16,8 @@
#ifndef LLVM_EDINST_H
#define LLVM_EDINST_H
-#include "llvm/Support/DataTypes.h"
#include "llvm/ADT/SmallVector.h"
+#include "llvm/Support/DataTypes.h"
#include <string>
#include <vector>