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