Floating point promotion is less buggy.
This commit is contained in:
parent
d5071e7df1
commit
ffb1eabf45
1 changed files with 15 additions and 2 deletions
|
@ -86,8 +86,21 @@ static void modify_promotable_irs(void)
|
||||||
{
|
{
|
||||||
struct ir* ir = promotable.item[i];
|
struct ir* ir = promotable.item[i];
|
||||||
|
|
||||||
if (ir->opcode != IR_PHI)
|
switch (ir->opcode)
|
||||||
|
{
|
||||||
|
case IR_ADDF:
|
||||||
|
case IR_SUBF:
|
||||||
|
case IR_MULF:
|
||||||
|
case IR_DIVF:
|
||||||
|
case IR_NEGF:
|
||||||
|
case IR_PHI:
|
||||||
|
case IR_NOP:
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
ir->opcode++;
|
ir->opcode++;
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue