mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 08:08:22 -05:00
glasm: Add conversion instructions to GLASM
This commit is contained in:
@ -39,6 +39,10 @@ Value RegAlloc::Consume(const IR::Value& value) {
|
||||
ret.type = Type::F32;
|
||||
ret.imm_f32 = value.F32();
|
||||
break;
|
||||
case IR::Type::U64:
|
||||
ret.type = Type::U64;
|
||||
ret.imm_u64 = value.U64();
|
||||
break;
|
||||
case IR::Type::F64:
|
||||
ret.type = Type::F64;
|
||||
ret.imm_f64 = value.F64();
|
||||
|
Reference in New Issue
Block a user