Remove TEST64mr. It's same as TEST64rm since and is commutative.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30178 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2006-09-08 06:56:55 +00:00
parent 25ab690a43
commit 36978b9c61

View File

@ -709,9 +709,6 @@ let isCommutable = 1 in
def TEST64rr : RI<0x85, MRMDestReg, (ops GR64:$src1, GR64:$src2),
"test{q} {$src2, $src1|$src1, $src2}",
[(X86cmp (and GR64:$src1, GR64:$src2), 0)]>;
def TEST64mr : RI<0x85, MRMDestMem, (ops i64mem:$src1, GR64:$src2),
"test{q} {$src2, $src1|$src1, $src2}",
[/*(X86cmp (and (loadi64 addr:$src1), GR64:$src2), 0)*/]>;
def TEST64rm : RI<0x85, MRMSrcMem, (ops GR64:$src1, i64mem:$src2),
"test{q} {$src2, $src1|$src1, $src2}",
[/*(X86cmp (and GR64:$src1, (loadi64 addr:$src2)), 0)*/]>;