summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2009-09-14 17:27:35 +0000
committerJim Grosbach <grosbach@apple.com>2009-09-14 17:27:35 +0000
commita67240399316f42d0da235053c77d71e6204f21f (patch)
tree98273da3fd3d0169cc5e428fbd09b0f1d945cd5f /lib
parentc2b0d484dc3e345b587335fafca290be90356905 (diff)
downloadllvm-a67240399316f42d0da235053c77d71e6204f21f.tar.gz
llvm-a67240399316f42d0da235053c77d71e6204f21f.tar.bz2
llvm-a67240399316f42d0da235053c77d71e6204f21f.tar.xz
trivial whitespace cleanup
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81773 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/ARM/ARMTargetMachine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMTargetMachine.cpp b/lib/Target/ARM/ARMTargetMachine.cpp
index 6a8519a9e9..f6d2fec567 100644
--- a/lib/Target/ARM/ARMTargetMachine.cpp
+++ b/lib/Target/ARM/ARMTargetMachine.cpp
@@ -28,7 +28,7 @@ static cl::opt<bool> DisableIfConversion("disable-arm-if-conversion",cl::Hidden,
cl::desc("Disable if-conversion pass"));
static const MCAsmInfo *createMCAsmInfo(const Target &T,
- const StringRef &TT) {
+ const StringRef &TT) {
Triple TheTriple(TT);
switch (TheTriple.getOS()) {
case Triple::Darwin:
@@ -43,7 +43,7 @@ extern "C" void LLVMInitializeARMTarget() {
// Register the target.
RegisterTargetMachine<ARMTargetMachine> X(TheARMTarget);
RegisterTargetMachine<ThumbTargetMachine> Y(TheThumbTarget);
-
+
// Register the target asm info.
RegisterAsmInfoFn A(TheARMTarget, createMCAsmInfo);
RegisterAsmInfoFn B(TheThumbTarget, createMCAsmInfo);