Add default case for unhandled target_type values
This commit is contained in:
parent
da71bc26a2
commit
3f49aa3cef
|
@ -206,6 +206,9 @@ void Value::Convert(TypeName target_type, RoundMode round_mode) {
|
||||||
type = target_type;
|
type = target_type;
|
||||||
constant.f64 = constant.f32;
|
constant.f64 = constant.f32;
|
||||||
return;
|
return;
|
||||||
|
default:
|
||||||
|
assert_unhandled_case(target_type);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
case FLOAT64_TYPE:
|
case FLOAT64_TYPE:
|
||||||
switch (target_type) {
|
switch (target_type) {
|
||||||
|
@ -213,6 +216,9 @@ void Value::Convert(TypeName target_type, RoundMode round_mode) {
|
||||||
type = target_type;
|
type = target_type;
|
||||||
constant.f32 = (float)constant.f64;
|
constant.f32 = (float)constant.f64;
|
||||||
return;
|
return;
|
||||||
|
default:
|
||||||
|
assert_unhandled_case(target_type);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
assert_unhandled_case(type);
|
assert_unhandled_case(type);
|
||||||
|
|
Loading…
Reference in New Issue