mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
Fix assert.
This commit is contained in:
parent
c4ef5d4eb8
commit
c97b462d8d
|
|
@ -1643,7 +1643,7 @@ Value* HIRBuilder::Not(Value* value) {
|
||||||
}
|
}
|
||||||
|
|
||||||
Value* HIRBuilder::Shl(Value* value1, Value* value2) {
|
Value* HIRBuilder::Shl(Value* value1, Value* value2) {
|
||||||
ASSERT_INTEGER_TYPE(value1);
|
ASSERT_NON_FLOAT_TYPE(value1);
|
||||||
ASSERT_INTEGER_TYPE(value2);
|
ASSERT_INTEGER_TYPE(value2);
|
||||||
|
|
||||||
// NOTE AND value2 with 0x3F for 64bit, 0x1F for 32bit, etc..
|
// NOTE AND value2 with 0x3F for 64bit, 0x1F for 32bit, etc..
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue