OSDN Git Service

Fix PR1351 and CodeGen/PowerPC/2007-04-24-InlineAsm-I-Modifier.ll
authorChris Lattner <sabre@nondot.org>
Tue, 24 Apr 2007 22:51:03 +0000 (22:51 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 24 Apr 2007 22:51:03 +0000 (22:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36410 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/PowerPC/PPCAsmPrinter.cpp

index 7f57f69..83fe41a 100644 (file)
@@ -442,6 +442,12 @@ bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
         return true;
       ++OpNo;   // Return the high-part.
       break;
+    case 'I':
+      // Write 'i' if an integer constant, otherwise nothing.  Used to print
+      // addi vs add, etc.
+      if (MI->getOperand(OpNo).isImm())
+        O << "i";
+      return false;
     }
   }