split low/high register mask in OperandMask

This commit is contained in:
Joshua Warner
2014-12-04 12:18:02 -07:00
parent 30359563a1
commit ac72aa8b91
7 changed files with 97 additions and 83 deletions

View File

@ -79,6 +79,6 @@ TEST(ArchitecturePlan)
(lir::UnaryOperation)op, vm::TargetBytesPerWord, mask, &thunk);
assertFalse(thunk);
assertNotEqual(static_cast<uint8_t>(0), mask.typeMask);
assertNotEqual(static_cast<uint64_t>(0), mask.registerMask);
assertNotEqual(static_cast<uint64_t>(0), mask.lowRegisterMask);
}
}