aboutsummaryrefslogtreecommitdiff
path: root/src/softfloat.hpp
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-09-21 18:38:55 -0700
committerAndrew Kelley <andrew@ziglang.org>2020-09-21 18:38:55 -0700
commit528832bd3a2e7b686ee84aef5887df740a6114db (patch)
tree90ccff9faa2ba2604c8538aeec0a147a4b01148c /src/softfloat.hpp
parentb9f61d401502f5d221e72c0d0e3bf448b11dcd68 (diff)
downloadzig-528832bd3a2e7b686ee84aef5887df740a6114db.tar.gz
zig-528832bd3a2e7b686ee84aef5887df740a6114db.zip
rename src-self-hosted/ to src/
Diffstat (limited to 'src/softfloat.hpp')
-rw-r--r--src/softfloat.hpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/softfloat.hpp b/src/softfloat.hpp
deleted file mode 100644
index a1173690b5..0000000000
--- a/src/softfloat.hpp
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Copyright (c) 2017 Andrew Kelley
- *
- * This file is part of zig, which is MIT licensed.
- * See http://opensource.org/licenses/MIT
- */
-
-#ifndef ZIG_SOFTFLOAT_HPP
-#define ZIG_SOFTFLOAT_HPP
-
-extern "C" {
-#include "softfloat.h"
-}
-
-static inline float16_t zig_double_to_f16(double x) {
- float64_t y;
- static_assert(sizeof(x) == sizeof(y), "");
- memcpy(&y, &x, sizeof(x));
- return f64_to_f16(y);
-}
-
-
-// Return value is safe to coerce to float even when |x| is NaN or Infinity.
-static inline double zig_f16_to_double(float16_t x) {
- float64_t y = f16_to_f64(x);
- double z;
- static_assert(sizeof(y) == sizeof(z), "");
- memcpy(&z, &y, sizeof(y));
- return z;
-}
-
-#endif