From 5e3c203cfd460ffa60341fb555fba6162abcbe61 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Thu, 29 Mar 2007 21:38:31 +0000 Subject: [PATCH] Can't re-materialize mov r, imm in thumb since mov would clobber the condition code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35479 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/ARM/ARMInstrThumb.td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/ARM/ARMInstrThumb.td b/lib/Target/ARM/ARMInstrThumb.td index 3c7cd03ee75..ad8a88f2077 100644 --- a/lib/Target/ARM/ARMInstrThumb.td +++ b/lib/Target/ARM/ARMInstrThumb.td @@ -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)]>; -- 2.11.0