80-col fixups.
authorEric Christopher <echristo@apple.com>
Tue, 28 Sep 2010 04:18:29 +0000 (04:18 +0000)
committerEric Christopher <echristo@apple.com>
Tue, 28 Sep 2010 04:18:29 +0000 (04:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114943 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMBaseInstrInfo.cpp
lib/Target/ARM/ARMELFWriterInfo.cpp
lib/Target/ARM/ARMGlobalMerge.cpp

index a0f0c390609835aa55541a69b25136fea9d1ec9c..04aeac3b19b3f7f5226dab30a6ca69aee8869dd6 100644 (file)
@@ -1394,7 +1394,8 @@ bool llvm::rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
 }
 
 bool ARMBaseInstrInfo::
-AnalyzeCompare(const MachineInstr *MI, unsigned &SrcReg, int &CmpMask, int &CmpValue) const {
+AnalyzeCompare(const MachineInstr *MI, unsigned &SrcReg, int &CmpMask,
+               int &CmpValue) const {
   switch (MI->getOpcode()) {
   default: break;
   case ARM::CMPri:
index a789082b18e043ce22419c8b8fa949f1c8b60a2d..1183e7efe122879ea37a0db966ee5230f208d440 100644 (file)
@@ -53,13 +53,15 @@ bool ARMELFWriterInfo::isPCRelativeRel(unsigned RelTy) const {
 }
 
 unsigned ARMELFWriterInfo::getAbsoluteLabelMachineRelTy() const {
-  assert(0 && "ARMELFWriterInfo::getAbsoluteLabelMachineRelTy() not implemented");
+  assert(0 &&
+         "ARMELFWriterInfo::getAbsoluteLabelMachineRelTy() not implemented");
   return 0;
 }
 
 long int ARMELFWriterInfo::computeRelocation(unsigned SymOffset,
                                              unsigned RelOffset,
                                              unsigned RelTy) const {
-  assert(0 && "ARMELFWriterInfo::getAbsoluteLabelMachineRelTy() not implemented");
+  assert(0 &&
+         "ARMELFWriterInfo::getAbsoluteLabelMachineRelTy() not implemented");
   return 0;
 }
index 9aaeeec02ae7a25129048bc1074aa0615a9cb2d0..fdcb67062f9967da932d88617c87d07399e90ffc 100644 (file)
@@ -12,7 +12,8 @@
 // global). Such a transformation can significantly reduce the register pressure
 // when many globals are involved.
 //
-// For example, consider the code which touches several global variables at once:
+// For example, consider the code which touches several global variables at 
+// once:
 //
 // static int foo[N], bar[N], baz[N];
 //
@@ -48,7 +49,7 @@
 //  str     r0, [r5], #4
 //
 //  note that we saved 2 registers here almostly "for free".
-// ===----------------------------------------------------------------------===//
+// ===---------------------------------------------------------------------===//
 
 #define DEBUG_TYPE "arm-global-merge"
 #include "ARM.h"