Merge pull request #1089 from Subv/neg_bits

Shaders: Corrected the 'abs' and 'neg' bit usage in the float arithmetic instructions.
This commit is contained in:
bunnei
2018-08-19 17:01:48 -04:00
committed by GitHub
2 changed files with 38 additions and 16 deletions

View File

@ -292,6 +292,10 @@ union Instruction {
}
} alu;
union {
BitField<48, 1, u64> negate_b;
} fmul;
union {
BitField<48, 1, u64> is_signed;
} shift;