diff --git a/test/cases/compile_errors/endless_loop_in_function_evaluation.zig b/test/cases/compile_errors/endless_loop_in_function_evaluation.zig index 7616bfa5e752d87d0b01a1ebcdbe6385d179f4f5..d63f896f4502bd2b537e902090babde089c87ad7 100644 --- a/test/cases/compile_errors/endless_loop_in_function_evaluation.zig +++ b/test/cases/compile_errors/endless_loop_in_function_evaluation.zig @@ -7,7 +7,7 @@ export fn entry() usize { return @sizeOf(@TypeOf(&seventh_fib_number)); } // error // backend=stage2 -// target=native +// target=x86_64-linux // // :3:21: error: evaluation exceeded 1000 backwards branches // :3:21: note: use @setEvalBranchQuota() to raise the branch limit from 1000 diff --git a/test/cases/compile_errors/function_ptr_alignment.zig b/test/cases/compile_errors/function_ptr_alignment.zig index e242e666f20aa09c40e9a6e95a68be348903d1e0..ca0f3ee2acfc718812557dfc4dd4e19f32afa899 100644 --- a/test/cases/compile_errors/function_ptr_alignment.zig +++ b/test/cases/compile_errors/function_ptr_alignment.zig @@ -19,7 +19,7 @@ comptime { // error // backend=stage2 -// target=native +// target=x86_64-linux // // :2:19: error: function pointer alignment disagrees with function alignment // :16:19: error: function pointer alignment disagrees with function alignment diff --git a/test/cases/compile_errors/implicit_cast_from_array_to_mutable_slice.zig b/test/cases/compile_errors/implicit_cast_from_array_to_mutable_slice.zig index 035fb68d9e30ea5c683e1b180d0689623518b9f9..e7ae5d72770ae363aeede3c4214d7f71b1d4e9fd 100644 --- a/test/cases/compile_errors/implicit_cast_from_array_to_mutable_slice.zig +++ b/test/cases/compile_errors/implicit_cast_from_array_to_mutable_slice.zig @@ -5,7 +5,7 @@ export fn entry() void { } // error -// backend=stage2 +// backend=llvm // target=native // // :4:9: error: array literal requires address-of operator (&) to coerce to slice type '[]i32'