diff options
| author | gingerBill <bill@gingerbill.org> | 2020-04-11 21:34:55 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2020-04-11 21:34:55 +0100 |
| commit | 90593fe6ae1a66ea5037140d14c7666fd073894c (patch) | |
| tree | 9afa3504eed1addf0e1ef5f8e76dbd7a25dfacdc /src/checker.cpp | |
| parent | 16b4178b8a9bb132e4b2361b95b53f791162a445 (diff) | |
Endian specific floating point types (e.g. f32be)
Diffstat (limited to 'src/checker.cpp')
| -rw-r--r-- | src/checker.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/checker.cpp b/src/checker.cpp index 678339362..323adac2a 100644 --- a/src/checker.cpp +++ b/src/checker.cpp @@ -1708,6 +1708,9 @@ void generate_minimum_dependency_set(Checker *c, Entity *start) { str_lit("bswap_32"), str_lit("bswap_64"), str_lit("bswap_128"), + + str_lit("bswap_f32"), + str_lit("bswap_f64"), }; for (isize i = 0; i < gb_count_of(required_runtime_entities); i++) { add_dependency_to_set(c, scope_lookup(c->info.runtime_package->scope, required_runtime_entities[i])); |