aboutsummaryrefslogtreecommitdiff
path: root/src/softfloat_ext.hpp
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-06-18 20:32:43 -0400
committerGitHub <noreply@github.com>2020-06-18 20:32:43 -0400
commit5ea0f589c92018b4596ebbbd5e0ce3b71467585c (patch)
tree10cbcb71acd74dcdc3e43d944cb07141639d3d9e /src/softfloat_ext.hpp
parentcaaa26c9f0db92c463a826f15c8392162be2e037 (diff)
parenteb7fad28f8f11b985c8ee6fbeb4a68345a9b3a5e (diff)
downloadzig-5ea0f589c92018b4596ebbbd5e0ce3b71467585c.tar.gz
zig-5ea0f589c92018b4596ebbbd5e0ce3b71467585c.zip
Merge pull request #5625 from antlilja/master
Improve support for f128 and comptime_float operations
Diffstat (limited to 'src/softfloat_ext.hpp')
-rw-r--r--src/softfloat_ext.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/softfloat_ext.hpp b/src/softfloat_ext.hpp
new file mode 100644
index 0000000000..0a1f958933
--- /dev/null
+++ b/src/softfloat_ext.hpp
@@ -0,0 +1,9 @@
+#ifndef ZIG_SOFTFLOAT_EXT_HPP
+#define ZIG_SOFTFLOAT_EXT_HPP
+
+#include "softfloat_types.h"
+
+void f128M_abs(const float128_t *aPtr, float128_t *zPtr);
+void f128M_trunc(const float128_t *aPtr, float128_t *zPtr);
+
+#endif \ No newline at end of file