forked from OSchip/llvm-project
Thanks to sabre for pointing out that we were incorrectly codegen'ing
int test(int x) { return 32768 - x; } Fixed by teaching the function that checks a constant's validity to be used as an immediate argument about subtract-from instructions. llvm-svn: 17476
This commit is contained in:
parent
adb5342ae8
commit
bff3d4abf0
|
@ -536,8 +536,11 @@ bool PPC32ISel::canUseAsImmediateForOpcode(ConstantInt *CI, unsigned Opcode,
|
|||
else
|
||||
return false;
|
||||
}
|
||||
|
||||
// Treat subfic like addi for the purposes of constant validation
|
||||
if (Opcode == 5) Opcode = 0;
|
||||
|
||||
// ADDI, Compare, and non-indexed Load take SIMM
|
||||
// addi, subfic, compare, and non-indexed load take SIMM
|
||||
bool cond1 = (Opcode < 2)
|
||||
&& ((int32_t)CI->getRawValue() <= 32767)
|
||||
&& ((int32_t)CI->getRawValue() >= -32768);
|
||||
|
|
Loading…
Reference in New Issue