Endian specific floating point types (e.g. f32be)

This commit is contained in:
gingerBill
2020-04-11 21:34:55 +01:00
parent 16b4178b8a
commit 90593fe6ae
9 changed files with 178 additions and 7 deletions

View File

@@ -1455,6 +1455,12 @@ bool check_representable_as_constant(CheckerContext *c, ExactValue in_value, Typ
case Basic_f64:
return true;
case Basic_f32le:
case Basic_f64le:
case Basic_f32be:
case Basic_f64be:
return true;
case Basic_UntypedFloat:
return true;