diff options
author | Craig Topper <craig.topper@gmail.com> | 2012-03-17 07:33:42 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2012-03-17 07:33:42 +0000 |
commit | 188ed9d56ecda032cbfd051d51cf2ec07c9e4f9d (patch) | |
tree | 7f7ccdc5617634b3e9f54a5f461a82067ba8b3b6 /llvm/lib/Target/ARM/ARMISelLowering.cpp | |
parent | 7b316825d4f794535b09588b2fa0eb9ca38af393 (diff) | |
download | bcm5719-llvm-188ed9d56ecda032cbfd051d51cf2ec07c9e4f9d.tar.gz bcm5719-llvm-188ed9d56ecda032cbfd051d51cf2ec07c9e4f9d.zip |
Reorder includes to match coding standards. Fix an issue or two exposed by that.
llvm-svn: 152978
Diffstat (limited to 'llvm/lib/Target/ARM/ARMISelLowering.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMISelLowering.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp index 2d282809c9d..459d82cdbe9 100644 --- a/llvm/lib/Target/ARM/ARMISelLowering.cpp +++ b/llvm/lib/Target/ARM/ARMISelLowering.cpp @@ -13,10 +13,10 @@ //===----------------------------------------------------------------------===// #define DEBUG_TYPE "arm-isel" +#include "ARMISelLowering.h" #include "ARM.h" #include "ARMCallingConv.h" #include "ARMConstantPoolValue.h" -#include "ARMISelLowering.h" #include "ARMMachineFunctionInfo.h" #include "ARMPerfectShuffle.h" #include "ARMRegisterInfo.h" @@ -49,7 +49,6 @@ #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/MathExtras.h" #include "llvm/Support/raw_ostream.h" -#include <sstream> using namespace llvm; STATISTIC(NumTailCalls, "Number of tail calls"); |