diff options
| author | Dale Johannesen <dalej@apple.com> | 2009-08-26 18:10:32 +0000 |
|---|---|---|
| committer | Dale Johannesen <dalej@apple.com> | 2009-08-26 18:10:32 +0000 |
| commit | 5e69950d5391bdf294b415bf39dd44f9f40556a1 (patch) | |
| tree | f4eb9064d72a265c4cbecc33e7a94e30b8e44b55 | |
| parent | 23f2034aaff80f52b309ee17bfa7a9fc801c9677 (diff) | |
| download | external_llvm-5e69950d5391bdf294b415bf39dd44f9f40556a1.zip external_llvm-5e69950d5391bdf294b415bf39dd44f9f40556a1.tar.gz external_llvm-5e69950d5391bdf294b415bf39dd44f9f40556a1.tar.bz2 | |
Alter 79292 to produce output that actually assembles.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80119 91177308-0d34-0410-b5e6-96231b3b80d8
| -rw-r--r-- | lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp | 2 | ||||
| -rw-r--r-- | test/CodeGen/PowerPC/2009-08-17-inline-asm-addr-mode-breakage.ll | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp b/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp index bf16b7e..704a439 100644 --- a/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp +++ b/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp @@ -518,7 +518,9 @@ bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo, if (ExtraCode && ExtraCode[0]) return true; // Unknown modifier. assert (MI->getOperand(OpNo).isReg()); + O << "0("; printOperand(MI, OpNo); + O << ")"; return false; } diff --git a/test/CodeGen/PowerPC/2009-08-17-inline-asm-addr-mode-breakage.ll b/test/CodeGen/PowerPC/2009-08-17-inline-asm-addr-mode-breakage.ll index 9e0c5de..e1fa30a 100644 --- a/test/CodeGen/PowerPC/2009-08-17-inline-asm-addr-mode-breakage.ll +++ b/test/CodeGen/PowerPC/2009-08-17-inline-asm-addr-mode-breakage.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=ppc32 | grep add +; RUN: llvm-as < %s | llc -march=ppc32 | FileCheck %s ; ModuleID = '<stdin>' target datalayout = "E-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f128:64:128" target triple = "powerpc-apple-darwin10.0" @@ -9,6 +9,9 @@ target triple = "powerpc-apple-darwin10.0" define void @foo(i32 %y) nounwind ssp { entry: +; CHECK: foo +; CHECK: add r2 +; CHECK: 0(r2) %y_addr = alloca i32 ; <i32*> [#uses=2] %"alloca point" = bitcast i32 0 to i32 ; <i32> [#uses=0] store i32 %y, i32* %y_addr |
