projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0705fbf
)
Correct instruction names for subtract-with-borrow
author
Anton Korobeynikov
<asl@math.spbu.ru>
Fri, 21 Aug 2009 18:37:28 +0000
(18:37 +0000)
committer
Anton Korobeynikov
<asl@math.spbu.ru>
Fri, 21 Aug 2009 18:37:28 +0000
(18:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79656
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/SystemZ/SystemZInstrInfo.td
patch
|
blob
|
history
diff --git
a/lib/Target/SystemZ/SystemZInstrInfo.td
b/lib/Target/SystemZ/SystemZInstrInfo.td
index 810d027398c7fb959bf245d43197e68daab02238..633bf39455c38ee782f7c3dbaa3d983cfea928c4 100644
(file)
--- a/
lib/Target/SystemZ/SystemZInstrInfo.td
+++ b/
lib/Target/SystemZ/SystemZInstrInfo.td
@@
-783,11
+783,11
@@
def SBC64ri32 : RILI<0xC24,
let Uses = [PSW] in {
def SUBE32rr : RREI<0xB999, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
- "s
l
cr\t{$dst, $src2}",
+ "s
b
cr\t{$dst, $src2}",
[(set GR32:$dst, (sube GR32:$src1, GR32:$src2)),
(implicit PSW)]>;
def SUBE64rr : RREI<0xB989, (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
- "s
l
cgr\t{$dst, $src2}",
+ "s
b
cgr\t{$dst, $src2}",
[(set GR64:$dst, (sube GR64:$src1, GR64:$src2)),
(implicit PSW)]>;
}