aboutsummaryrefslogtreecommitdiff
path: root/src/checker.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2020-04-11 21:34:55 +0100
committergingerBill <bill@gingerbill.org>2020-04-11 21:34:55 +0100
commit90593fe6ae1a66ea5037140d14c7666fd073894c (patch)
tree9afa3504eed1addf0e1ef5f8e76dbd7a25dfacdc /src/checker.cpp
parent16b4178b8a9bb132e4b2361b95b53f791162a445 (diff)
Endian specific floating point types (e.g. f32be)
Diffstat (limited to 'src/checker.cpp')
-rw-r--r--src/checker.cpp3
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]));