hsail: generate mov instructions for more arith_types and bit_types
This commit is contained in:
parent
35ba103009
commit
69c2d86d68
1 changed files with 1 additions and 1 deletions
|
@ -686,7 +686,7 @@ gen('Rem', arith_int_types, 'src0 - ((src0 / src1) * src1)')
|
|||
gen('Abs', arith_types, 'std::abs(src0)')
|
||||
gen('Neg', arith_types, '-src0')
|
||||
|
||||
gen('Mov', bit_types, 'src0')
|
||||
gen('Mov', bit_types + arith_types, 'src0')
|
||||
gen('Not', bit_types, 'heynot(src0)')
|
||||
|
||||
# mad and fma differ only in rounding behavior, which we don't emulate
|
||||
|
|
Loading…
Reference in a new issue