| ... | ... | @@ -1000,10 +1000,9 @@ pub const VaListArm = extern struct { |
| 1000 | 1000 | /// This data structure is used by the Zig language code generation and |
| 1001 | 1001 | /// therefore must be kept in sync with the compiler implementation. |
| 1002 | 1002 | pub const VaListHexagon = extern struct { |
| 1003 | | __gpr: c_long, |
| 1004 | | __fpr: c_long, |
| 1005 | | __overflow_arg_area: *anyopaque, |
| 1006 | | __reg_save_area: *anyopaque, |
| 1003 | __current_saved_reg_area_pointer: *anyopaque, |
| 1004 | __saved_reg_area_end_pointer: *anyopaque, |
| 1005 | __overflow_area_pointer: *anyopaque, |
| 1007 | 1006 | }; |
| 1008 | 1007 | |
| 1009 | 1008 | /// This data structure is used by the Zig language code generation and |
| ... | ... | @@ -1019,9 +1018,10 @@ pub const VaListPowerPc = extern struct { |
| 1019 | 1018 | /// This data structure is used by the Zig language code generation and |
| 1020 | 1019 | /// therefore must be kept in sync with the compiler implementation. |
| 1021 | 1020 | pub const VaListS390x = extern struct { |
| 1022 | | __current_saved_reg_area_pointer: *anyopaque, |
| 1023 | | __saved_reg_area_end_pointer: *anyopaque, |
| 1024 | | __overflow_area_pointer: *anyopaque, |
| 1021 | __gpr: c_long, |
| 1022 | __fpr: c_long, |
| 1023 | __overflow_arg_area: *anyopaque, |
| 1024 | __reg_save_area: *anyopaque, |
| 1025 | 1025 | }; |
| 1026 | 1026 | |
| 1027 | 1027 | /// This data structure is used by the Zig language code generation and |