Untabify.
[oota-llvm.git] / lib / Target / PowerPC / PPCAsmPrinter.cpp
index 0cd15a7250fbd0e192324b3d731fff2beb233b4f..8fb3a4701f2bc4415dad241befeea849a340012b 100644 (file)
@@ -296,16 +296,16 @@ bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
       }
     case 'U': // Print 'u' for update form.
     case 'X': // Print 'x' for indexed form.
-      {
-       // FIXME: Currently for PowerPC memory operands are always loaded
-       // into a register, so we never get an update or indexed form.
-       // This is bad even for offset forms, since even if we know we
-       // have a value in -16(r1), we will generate a load into r<n>
-       // and then load from 0(r<n>).  Until that issue is fixed,
-       // tolerate 'U' and 'X' but don't output anything.
-       assert(MI->getOperand(OpNo).isReg());
-       return false;
-      }
+    {
+      // FIXME: Currently for PowerPC memory operands are always loaded
+      // into a register, so we never get an update or indexed form.
+      // This is bad even for offset forms, since even if we know we
+      // have a value in -16(r1), we will generate a load into r<n>
+      // and then load from 0(r<n>).  Until that issue is fixed,
+      // tolerate 'U' and 'X' but don't output anything.
+      assert(MI->getOperand(OpNo).isReg());
+      return false;
+    }
     }
   }
 
@@ -1085,7 +1085,7 @@ void PPCLinuxAsmPrinter::EmitFunctionEntryLabel() {
 
   if (!Subtarget->isPPC64()) {
     const PPCFunctionInfo *PPCFI = MF->getInfo<PPCFunctionInfo>();
-       if (PPCFI->usesPICBase()) {
+    if (PPCFI->usesPICBase()) {
       MCSymbol *RelocSymbol = PPCFI->getPICOffsetSymbol();
       MCSymbol *PICBase = MF->getPICBaseSymbol();
       OutStreamer->EmitLabel(RelocSymbol);