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 | 0204bc3de1bdebfa4a91693b1e5e1e826f191675 (patch) | |
| tree | 49c59c6ac8765bb0fd0eaf8e18779dad1d7f82a2 /llvm | |
| parent | 52ecfdf3c5c9fac6b0262b8a09bfdd6335ceacf0 (diff) | |
| download | bcm5719-llvm-0204bc3de1bdebfa4a91693b1e5e1e826f191675.tar.gz bcm5719-llvm-0204bc3de1bdebfa4a91693b1e5e1e826f191675.zip | |
outs come before ins.
llvm-svn: 98864
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Target/X86/X86InstrInfo.td | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/X86InstrInfo.td b/llvm/lib/Target/X86/X86InstrInfo.td index 1225b683b74..d9977f24f78 100644 --- a/llvm/lib/Target/X86/X86InstrInfo.td +++ b/llvm/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... |

