Fix destination type for the ConditionalSelect IR instruction
This commit is contained in:
parent
4246257d16
commit
ab53424831
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ namespace ARMeilleure.Translation
|
|||
|
||||
public Operand ConditionalSelect(Operand a, Operand b, Operand c)
|
||||
{
|
||||
return Add(Instruction.ConditionalSelect, Local(a.Type), a, b, c);
|
||||
return Add(Instruction.ConditionalSelect, Local(b.Type), a, b, c);
|
||||
}
|
||||
|
||||
public Operand Copy(Operand a)
|
||||
|
|
Loading…
Add table
Reference in a new issue