diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-10-06 22:46:47 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-10-06 22:46:47 +0000 |
commit | 25cd3bfbd718533676733f7029b6c372bb791e80 (patch) | |
tree | 4da89ddc46650bbc3565df559a3b79e27c4a754f /llvm/lib | |
parent | bff84d418f2d25fe297f0b6e56b2f156b6874e6a (diff) | |
download | bcm5719-llvm-25cd3bfbd718533676733f7029b6c372bb791e80.tar.gz bcm5719-llvm-25cd3bfbd718533676733f7029b6c372bb791e80.zip |
remove trailing whitespace
llvm-svn: 115860
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/ARM/ARMAsmPrinter.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Target/ARM/ARMAsmPrinter.cpp b/llvm/lib/Target/ARM/ARMAsmPrinter.cpp index 4246dc8254e..7951cfabb8b 100644 --- a/llvm/lib/Target/ARM/ARMAsmPrinter.cpp +++ b/llvm/lib/Target/ARM/ARMAsmPrinter.cpp @@ -110,7 +110,7 @@ namespace { private: // Helpers for EmitStartOfAsmFile() and EmitEndOfAsmFile() void emitAttributes(); - void emitAttribute(ARMBuildAttrs::AttrType attr, int v); + void emitAttribute(ARMBuildAttrs::AttrType attr, int v); public: void PrintDebugValueComment(const MachineInstr *MI, raw_ostream &OS); @@ -491,12 +491,12 @@ void ARMAsmPrinter::EmitEndOfAsmFile(Module &M) { // Helper routines for EmitStartOfAsmFile() and EmitEndOfAsmFile() // FIXME: // The following seem like one-off assembler flags, but they actually need -// to appear in the .ARM.attributes section in ELF. +// to appear in the .ARM.attributes section in ELF. // Instead of subclassing the MCELFStreamer, we do the work here. void ARMAsmPrinter::emitAttributes() { // FIXME: Add in ELF specific section handling here. - + // FIXME: unify this: .cpu and CPUString with enum attributes std::string CPUString = Subtarget->getCPUString(); if (CPUString != "generic") @@ -531,9 +531,9 @@ void ARMAsmPrinter::emitAttributes() { void ARMAsmPrinter::emitAttribute(ARMBuildAttrs::AttrType attr, int v) { if (OutStreamer.hasRawTextSupport()) { - OutStreamer.EmitRawText("\t.eabi_attribute " + + OutStreamer.EmitRawText("\t.eabi_attribute " + Twine(attr) + ", " + Twine(v)); - + } else { assert(0 && "ELF .ARM.attributes unimplemented"); } |