Merge pull request #2811 from ReinUsesLisp/fsetp-fix

float_set_predicate: Add missing negation bit for the second operand
This commit is contained in:
bunnei 2019-09-03 22:34:34 -04:00 committed by GitHub
commit d4f33b822b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View file

@ -886,6 +886,7 @@ union Instruction {
union {
BitField<0, 3, u64> pred0;
BitField<3, 3, u64> pred3;
BitField<6, 1, u64> neg_b;
BitField<7, 1, u64> abs_a;
BitField<39, 3, u64> pred39;
BitField<42, 1, u64> neg_pred;