diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 07:12:27 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 07:12:27 +0000 |
commit | a1514e24cc24b050f53a12650e047799358833a1 (patch) | |
tree | 44eeca62c167ea741c93dfdc7ed31b3094d20c32 /lib/Target/MSP430 | |
parent | e6f2df961065e3b723ef0fc78441f07c5577acd2 (diff) |
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/Target/MSP430')
-rw-r--r-- | lib/Target/MSP430/MSP430TargetMachine.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/MSP430/MSP430TargetMachine.h b/lib/Target/MSP430/MSP430TargetMachine.h index 186172ede4..8a94d746de 100644 --- a/lib/Target/MSP430/MSP430TargetMachine.h +++ b/lib/Target/MSP430/MSP430TargetMachine.h @@ -15,11 +15,11 @@ #ifndef LLVM_TARGET_MSP430_TARGETMACHINE_H #define LLVM_TARGET_MSP430_TARGETMACHINE_H -#include "MSP430InstrInfo.h" -#include "MSP430ISelLowering.h" #include "MSP430FrameLowering.h" -#include "MSP430SelectionDAGInfo.h" +#include "MSP430ISelLowering.h" +#include "MSP430InstrInfo.h" #include "MSP430RegisterInfo.h" +#include "MSP430SelectionDAGInfo.h" #include "MSP430Subtarget.h" #include "llvm/DataLayout.h" #include "llvm/Target/TargetFrameLowering.h" |