make CAS work
authorAndrew Lenharth <andrewl@lenharth.org>
Sat, 1 Mar 2008 22:27:48 +0000 (22:27 +0000)
committerAndrew Lenharth <andrewl@lenharth.org>
Sat, 1 Mar 2008 22:27:48 +0000 (22:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47799 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelLowering.cpp
lib/Target/X86/X86InstrInfo.td

index 4cb949161385fdcdb77e908de1f834ee385525f0..6c7f5fede6fc46a661a58a5ae3e518171e51661c 100644 (file)
@@ -5358,10 +5358,10 @@ SDOperand X86TargetLowering::LowerCAS(SDOperand Op, SelectionDAG &DAG) {
   case MVT::i32: Reg = X86::EAX; size = 4; break;
   };
   SDOperand cpIn = DAG.getCopyToReg(Op.getOperand(0), Reg,
-                                    Op.getOperand(2), SDOperand());
+                                    Op.getOperand(3), SDOperand());
   SDOperand Ops[] = { cpIn.getValue(0),
                        Op.getOperand(1),
-                       Op.getOperand(3),
+                       Op.getOperand(2),
                        DAG.getTargetConstant(size, MVT::i8),
                        cpIn.getValue(1) };
   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
index a109dc6488796cd3802393c63080d5b297bf85be..134aeb63d11c202d4ef4cbe2fd8dfb9efeb40891 100644 (file)
@@ -2548,6 +2548,7 @@ def EH_RETURN   : I<0xC3, RawFrm, (outs), (ins GR32:$addr),
 
 //FIXME: Please check the format Pseudo is certainly wrong, but the opcode and
 //       prefixes should be correct
+
 let Defs = [EAX, EFLAGS], Uses = [EAX] in {
 def CMPXCHG32 : I<0xB1, Pseudo, (outs), (ins i32mem:$ptr, GR32:$swap),
                "cmpxchgl $swap,$ptr", []>, TB;