zig/std/special
Wink Saville 634d11ab28 Add add compiler_rt routines for float to signed integer conversion
And add std.math.f128_* constants.

The routines are:

  __fixdfdi, __fixdfsi, __fixdfti,
  __fixsfdi, __fixsfsi, __fixsfti,
  __fixtfdi, __fixtfsi, __fixtfti.

These all call fixint which is a generic zig function that does the
conversion:

  pub fn fixint(comptime fp_t: type, comptime fixint_t: type, a: fp_t) fixint_t

There are also a set tests:

  __fixdfdi_test, __fixdfsi_test, __fixdfti_test,
  __fixsfdi_test, __fixsfsi_test, __fixsfti_test,
  __fixtfdi_test, __fixtfsi_test, __fixtfti_test.
2018-12-12 00:21:42 -05:00
..
compiler_rt Add add compiler_rt routines for float to signed integer conversion 2018-12-12 00:21:42 -05:00
init-exe New Zig formal grammar (#1685) 2018-11-13 05:08:37 -08:00
init-lib
bootstrap_lib.zig
bootstrap.zig zig fmt 2018-11-19 17:28:18 -05:00
build_runner.zig fix incorrect --help text 2018-11-19 13:26:35 -05:00
builtin.zig remove @minValue,@maxValue; add std.math.minInt,maxInt 2018-10-26 15:01:51 -04:00
panic.zig
test_runner.zig