summaryrefslogtreecommitdiff
path: root/lib/Target/SystemZ/SystemZInstrInfo.td
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2009-07-16 14:04:38 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2009-07-16 14:04:38 +0000
commit71fd2600f4731d966c7237b03a99cc0bbb1bc01e (patch)
treee8438a5ea8679d60c1b62ef4fe4d7a83bd65e631 /lib/Target/SystemZ/SystemZInstrInfo.td
parent70f717f0b769eccda6bc0832320e8e2cb7564b07 (diff)
downloadllvm-71fd2600f4731d966c7237b03a99cc0bbb1bc01e.tar.gz
llvm-71fd2600f4731d966c7237b03a99cc0bbb1bc01e.tar.bz2
llvm-71fd2600f4731d966c7237b03a99cc0bbb1bc01e.tar.xz
Fix MUL64rm instruction asmprinting
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75976 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SystemZ/SystemZInstrInfo.td')
-rw-r--r--lib/Target/SystemZ/SystemZInstrInfo.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/SystemZ/SystemZInstrInfo.td b/lib/Target/SystemZ/SystemZInstrInfo.td
index 740ac42124..41489bcd6e 100644
--- a/lib/Target/SystemZ/SystemZInstrInfo.td
+++ b/lib/Target/SystemZ/SystemZInstrInfo.td
@@ -712,7 +712,7 @@ def MUL32rm : Pseudo<(outs GR32:$dst), (ins GR32:$src1, rriaddr:$src2),
"msy\t{$dst, $src2}",
[(set GR32:$dst, (mul GR32:$src1, (load rriaddr:$src2)))]>;
def MUL64rm : Pseudo<(outs GR64:$dst), (ins GR64:$src1, rriaddr:$src2),
- "msgy\t{$dst, $src2}",
+ "msg\t{$dst, $src2}",
[(set GR64:$dst, (mul GR64:$src1, (load rriaddr:$src2)))]>;
def MULSX64rr32 : Pseudo<(outs GR64:$dst), (ins GR64:$src1, GR32:$src2),