mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
backend=auto (now the default if backend is omitted) means to let the compiler pick whatever backend it wants as the default. This is important for platforms where we don't yet have a self-hosted backend, such as loongarch64. Also purge a bunch of redundant target=native.
28 lines
607 B
Zig
28 lines
607 B
Zig
export fn foo() void {
|
|
var a: u32 = 2;
|
|
_ = &a;
|
|
_ = @as(comptime_int, @intCast(a));
|
|
}
|
|
export fn bar() void {
|
|
var a: u32 = 2;
|
|
_ = &a;
|
|
_ = @as(u32, @floatFromInt(a));
|
|
}
|
|
export fn baz() void {
|
|
var a: u32 = 2;
|
|
_ = &a;
|
|
_ = @as(u32, @intFromFloat(a));
|
|
}
|
|
export fn qux() void {
|
|
var a: f32 = 2;
|
|
_ = &a;
|
|
_ = @as(u32, @intCast(a));
|
|
}
|
|
|
|
// error
|
|
//
|
|
// :4:36: error: unable to cast runtime value to 'comptime_int'
|
|
// :9:18: error: expected float type, found 'u32'
|
|
// :14:32: error: expected float type, found 'u32'
|
|
// :19:27: error: expected integer or vector, found 'f32'
|