File tree 2 files changed +6
-6
lines changed 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ pub const SYS = extern enum(usize) {
26
26
mknod = 14 ,
27
27
chmod = 15 ,
28
28
lchown = 16 ,
29
- sys_break = 17 , // sys_ prepended to avoid clashing with keyword
29
+ @ "break" = 17 ,
30
30
oldstat = 18 ,
31
31
lseek = 19 ,
32
32
getpid = 20 ,
@@ -574,7 +574,7 @@ pub const vrregset = extern struct {
574
574
_pad1 : [2 ]u32 ,
575
575
vscr_word_be : u32 ,
576
576
vrsave : u32 ,
577
- _pad2 : [3 ]u32
577
+ _pad2 : [3 ]u32 ,
578
578
};
579
579
pub const vrregset_t = vrregset ;
580
580
@@ -588,7 +588,7 @@ pub const mcontext_t = extern struct {
588
588
gp_regs : gregset_t ,
589
589
fp_regs : fpregset_t ,
590
590
v_regs : * vrregset_t ,
591
- vmx_reserve : [34 + 34 + 32 + 1 ]i64 ,
591
+ vmx_reserve : [34 + 34 + 32 + 1 ]i64 ,
592
592
};
593
593
594
594
pub const ucontext_t = extern struct {
Original file line number Diff line number Diff line change @@ -282,10 +282,10 @@ pub fn addCases(cases: *tests.StackTracesContext) void {
282
282
\\source.zig:10:8: [address] in main (test)
283
283
\\ foo();
284
284
\\ ^
285
- \\start.zig:254 :29: [address] in std.start.posixCallMainAndExit (test)
285
+ \\start.zig:269 :29: [address] in std.start.posixCallMainAndExit (test)
286
286
\\ return root.main();
287
287
\\ ^
288
- \\start.zig:128 :5: [address] in std.start._start (test)
288
+ \\start.zig:143 :5: [address] in std.start._start (test)
289
289
\\ @call(.{ .modifier = .never_inline }, posixCallMainAndExit, .{});
290
290
\\ ^
291
291
\\
@@ -294,7 +294,7 @@ pub fn addCases(cases: *tests.StackTracesContext) void {
294
294
switch (std .Target .current .cpu .arch ) {
295
295
.aarch64 = > "" , // TODO disabled; results in segfault
296
296
else = >
297
- \\start.zig:128 :5: [address] in std.start._start (test)
297
+ \\start.zig:143 :5: [address] in std.start._start (test)
298
298
\\ @call(.{ .modifier = .never_inline }, posixCallMainAndExit, .{});
299
299
\\ ^
300
300
\\
You can’t perform that action at this time.
0 commit comments