mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 10:05:29 +00:00
Fix a testcase. Constraint was incorrect allowing r0 to be used
for the EX insn. Patch by Christian Borntraeger (borntraeger@de.ibm.com). git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12417
This commit is contained in:
parent
c0883bddd7
commit
f41f7ad456
@ -13,7 +13,7 @@ void tr(uint8_t *codepage, uint8_t *addr, uint64_t len)
|
||||
" larl 1,1f\n"
|
||||
"1: tr 0(1,%0),0(%2)\n"
|
||||
" ex %1,0(1)"
|
||||
: "+&a" (addr), "+d" (len)
|
||||
: "+&a" (addr), "+a" (len)
|
||||
: "a" (codepage) : "cc", "memory", "1");
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user