diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2006-07-03 17:57:34 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2006-07-03 17:57:34 +0000 |
commit | 042f5076ed5445177ae26f99d55384f7ebbb3330 (patch) | |
tree | bfe411044353211f63550e32a91ad6d80f0355bd /llvm | |
parent | ad88ff24b8f9f0216796e80af2066e6f129e388e (diff) | |
download | bcm5719-llvm-042f5076ed5445177ae26f99d55384f7ebbb3330.tar.gz bcm5719-llvm-042f5076ed5445177ae26f99d55384f7ebbb3330.zip |
0 offsets for memory operands
llvm-svn: 28989
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp b/llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp index 1c1c39a57ec..919552cb1f0 100644 --- a/llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp +++ b/llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp @@ -288,6 +288,8 @@ bool AlphaAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, const char *ExtraCode) { if (ExtraCode && ExtraCode[0]) return true; // Unknown modifier. + O << "0("; printOperand(MI, OpNo); + O << ")"; return false; } |