http://llvm.org/bugs/show_bug.cgi?id=5979
Anton Korobeynikov <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #3 from Anton Korobeynikov <[email protected]> 2010-01-15 13:18:45 --- (In reply to comment #2) > Anton appears to have fixed this in r93496. The problem was that MSP430 cmp > had its arguments reversed. > (I'm not sure why it's eating another register now.) It's eating the register since imm can be only source operand. We need to transform such cmp into cmp #100, 0(r12) jge <> I did this yesterday, but haven't committed the patch yet :) -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
