diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2017-10-01 21:19:06 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2017-10-01 21:19:58 -0400 |
| commit | e3ea0b652c7bec25d7303d98e08cdfe1d288a9ec (patch) | |
| tree | 93706a404bd91e54685af663bf32170f90807766 /std | |
| parent | 756d5c545d4f05ce770511a024e9fefe258591f4 (diff) | |
| download | zig-e3ea0b652c7bec25d7303d98e08cdfe1d288a9ec.tar.gz zig-e3ea0b652c7bec25d7303d98e08cdfe1d288a9ec.zip | |
still build compiler-rt when linking msvc CRT
because it's missing some things
Diffstat (limited to 'std')
| -rw-r--r-- | std/special/compiler_rt/comparetf2.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/std/special/compiler_rt/comparetf2.zig b/std/special/compiler_rt/comparetf2.zig index d7c33c6b9f..b64403158c 100644 --- a/std/special/compiler_rt/comparetf2.zig +++ b/std/special/compiler_rt/comparetf2.zig @@ -117,6 +117,7 @@ export fn __unordtf2(a: f128, b: f128) -> c_int { } // The following are alternative names for the preceding routines. +// TODO use aliases https://github.com/zig-lang/zig/issues/462 export fn __eqtf2(a: f128, b: f128) -> c_int { @setGlobalLinkage(__eqtf2, builtin.GlobalLinkage.LinkOnce); |
