diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-18 20:50:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-18 20:50:06 +0000 |
commit | 34b8a8857c89ca4d8e6996a1726f5643c0b0cf56 (patch) | |
tree | fb6020cc3e8b228fbacc02cb5a429c2f5796356f /lib | |
parent | 07754c2a1b06b5d027cf4cdf532e25f4e8055058 (diff) | |
download | external_llvm-34b8a8857c89ca4d8e6996a1726f5643c0b0cf56.zip external_llvm-34b8a8857c89ca4d8e6996a1726f5643c0b0cf56.tar.gz external_llvm-34b8a8857c89ca4d8e6996a1726f5643c0b0cf56.tar.bz2 |
outs come before ins.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98864 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/X86/X86InstrInfo.td | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td index 1225b68..d9977f2 100644 --- a/lib/Target/X86/X86InstrInfo.td +++ b/lib/Target/X86/X86InstrInfo.td @@ -661,9 +661,9 @@ let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in { // Loop instructions -def LOOP : I<0xE2, RawFrm, (ins brtarget8:$dst), (outs), "loop\t$dst", []>; -def LOOPE : I<0xE1, RawFrm, (ins brtarget8:$dst), (outs), "loope\t$dst", []>; -def LOOPNE : I<0xE0, RawFrm, (ins brtarget8:$dst), (outs), "loopne\t$dst", []>; +def LOOP : I<0xE2, RawFrm, (outs), (ins brtarget8:$dst), "loop\t$dst", []>; +def LOOPE : I<0xE1, RawFrm, (outs), (ins brtarget8:$dst), "loope\t$dst", []>; +def LOOPNE : I<0xE0, RawFrm, (outs), (ins brtarget8:$dst), "loopne\t$dst", []>; //===----------------------------------------------------------------------===// // Call Instructions... |