2022-05-13 08:00:20 +01:00
|
|
|
const std = @import("std");
|
|
|
|
|
2022-09-14 22:43:48 +01:00
|
|
|
pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace, _: ?usize) noreturn {
|
2022-05-13 08:00:20 +01:00
|
|
|
_ = stack_trace;
|
|
|
|
if (std.mem.eql(u8, message, "attempt to cast negative value to unsigned integer")) {
|
|
|
|
std.process.exit(0);
|
|
|
|
}
|
|
|
|
std.process.exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() !void {
|
|
|
|
var x = @splat(4, @as(i32, -2147483647));
|
|
|
|
var y = @intCast(@Vector(4, u32), x);
|
|
|
|
_ = y;
|
|
|
|
return error.TestFailed;
|
|
|
|
}
|
|
|
|
|
|
|
|
// run
|
2022-07-16 13:56:16 +01:00
|
|
|
// backend=llvm
|
2022-05-14 01:58:32 +01:00
|
|
|
// target=native
|