reg_alloc: Insert braces around DEBUG_ASSERT
DEBUG_ASSERT becomes an empty statement in release-mode; an if statement with an empty statement produces a compiler warning.
This commit is contained in:
parent
dc26afbd7e
commit
13908c5a58
1 changed files with 2 additions and 1 deletions
|
@ -120,8 +120,9 @@ Gen::X64Reg RegAlloc::UseDefRegister(IR::Inst* use_inst, IR::Inst* def_inst, Hos
|
||||||
}
|
}
|
||||||
|
|
||||||
bool is_floating_point = HostLocIsXMM(*desired_locations.begin());
|
bool is_floating_point = HostLocIsXMM(*desired_locations.begin());
|
||||||
if (is_floating_point)
|
if (is_floating_point) {
|
||||||
DEBUG_ASSERT(use_inst->GetType() == IR::Type::F32 || use_inst->GetType() == IR::Type::F64);
|
DEBUG_ASSERT(use_inst->GetType() == IR::Type::F32 || use_inst->GetType() == IR::Type::F64);
|
||||||
|
}
|
||||||
Gen::X64Reg use_reg = UseRegister(use_inst, is_floating_point ? any_xmm : any_gpr);
|
Gen::X64Reg use_reg = UseRegister(use_inst, is_floating_point ? any_xmm : any_gpr);
|
||||||
Gen::X64Reg def_reg = DefRegister(def_inst, desired_locations);
|
Gen::X64Reg def_reg = DefRegister(def_inst, desired_locations);
|
||||||
if (is_floating_point) {
|
if (is_floating_point) {
|
||||||
|
|
Loading…
Reference in a new issue