mirror of
https://github.com/ziglang/zig.git
synced 2024-11-25 22:00:15 +00:00
78 lines
3.1 KiB
Zig
78 lines
3.1 KiB
Zig
const builtin = @import("builtin");
|
|
pub const panic = @import("compiler_rt/common.zig").panic;
|
|
|
|
comptime {
|
|
// TODO moving these around makes or breaks compilation of zig1.o for some reason
|
|
// Perhaps, until we switch to stage2, exports should be duplicated between this file
|
|
// and files included as a standalone units?
|
|
_ = @import("compiler_rt/atomics.zig");
|
|
_ = @import("compiler_rt/addXf3.zig");
|
|
_ = @import("compiler_rt/mulXf3.zig");
|
|
_ = @import("compiler_rt/compareXf2.zig");
|
|
_ = @import("compiler_rt/extendXfYf2.zig");
|
|
_ = @import("compiler_rt/extend_f80.zig");
|
|
_ = @import("compiler_rt/truncXfYf2.zig");
|
|
_ = @import("compiler_rt/trunc_f80.zig");
|
|
_ = @import("compiler_rt/divtf3.zig");
|
|
_ = @import("compiler_rt/divsf3.zig");
|
|
_ = @import("compiler_rt/divdf3.zig");
|
|
_ = @import("compiler_rt/divxf3.zig");
|
|
_ = @import("compiler_rt/sin.zig");
|
|
_ = @import("compiler_rt/cos.zig");
|
|
_ = @import("compiler_rt/sincos.zig");
|
|
_ = @import("compiler_rt/ceil.zig");
|
|
_ = @import("compiler_rt/exp.zig");
|
|
_ = @import("compiler_rt/exp2.zig");
|
|
_ = @import("compiler_rt/fabs.zig");
|
|
_ = @import("compiler_rt/floor.zig");
|
|
_ = @import("compiler_rt/fma.zig");
|
|
_ = @import("compiler_rt/fmax.zig");
|
|
_ = @import("compiler_rt/fmin.zig");
|
|
_ = @import("compiler_rt/fmod.zig");
|
|
_ = @import("compiler_rt/log.zig");
|
|
_ = @import("compiler_rt/log10.zig");
|
|
_ = @import("compiler_rt/log2.zig");
|
|
_ = @import("compiler_rt/round.zig");
|
|
_ = @import("compiler_rt/sqrt.zig");
|
|
_ = @import("compiler_rt/tan.zig");
|
|
_ = @import("compiler_rt/trunc.zig");
|
|
_ = @import("compiler_rt/stack_probe.zig");
|
|
_ = @import("compiler_rt/divti3.zig");
|
|
_ = @import("compiler_rt/modti3.zig");
|
|
_ = @import("compiler_rt/multi3.zig");
|
|
_ = @import("compiler_rt/udivti3.zig");
|
|
_ = @import("compiler_rt/udivmodti4.zig");
|
|
_ = @import("compiler_rt/umodti3.zig");
|
|
_ = @import("compiler_rt/floatXiYf.zig");
|
|
_ = @import("compiler_rt/fixXfYi.zig");
|
|
_ = @import("compiler_rt/count0bits.zig");
|
|
_ = @import("compiler_rt/parity.zig");
|
|
_ = @import("compiler_rt/popcount.zig");
|
|
_ = @import("compiler_rt/bswap.zig");
|
|
_ = @import("compiler_rt/int.zig");
|
|
_ = @import("compiler_rt/shift.zig");
|
|
_ = @import("compiler_rt/negXi2.zig");
|
|
_ = @import("compiler_rt/muldi3.zig");
|
|
_ = @import("compiler_rt/absv.zig");
|
|
_ = @import("compiler_rt/negv.zig");
|
|
_ = @import("compiler_rt/addo.zig");
|
|
_ = @import("compiler_rt/subo.zig");
|
|
_ = @import("compiler_rt/mulo.zig");
|
|
_ = @import("compiler_rt/cmp.zig");
|
|
_ = @import("compiler_rt/negXf2.zig");
|
|
_ = @import("compiler_rt/os_version_check.zig");
|
|
_ = @import("compiler_rt/emutls.zig");
|
|
_ = @import("compiler_rt/arm.zig");
|
|
_ = @import("compiler_rt/aulldiv.zig");
|
|
_ = @import("compiler_rt/aullrem.zig");
|
|
_ = @import("compiler_rt/sparc.zig");
|
|
_ = @import("compiler_rt/clear_cache.zig");
|
|
|
|
// missing: Floating point raised to integer power
|
|
|
|
// missing: Complex arithmetic
|
|
// (a + ib) * (c + id)
|
|
// (a + ib) / (c + id)
|
|
|
|
}
|