Can't re-materialize mov r, imm in thumb since mov would clobber the condition code.

llvm-svn: 35479
This commit is contained in:
Evan Cheng 2007-03-29 21:38:31 +00:00
parent d232f311cb
commit cc44b1e743
1 changed files with 1 additions and 1 deletions

View File

@ -379,7 +379,7 @@ def tLSRrr : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
"lsr $dst, $rhs",
[(set GPR:$dst, (srl GPR:$lhs, GPR:$rhs))]>;
let isReMaterializable = 1 in
// FIXME: This is not rematerializable because mov changes the condition code.
def tMOVi8 : TI<(ops GPR:$dst, i32imm:$src),
"mov $dst, $src",
[(set GPR:$dst, imm0_255:$src)]>;