authorgravatar for robin@voetter.nlRobin Voetter <robin@voetter.nl> 2021-09-20 02:34:53+02:00
committergravatar for robin@voetter.nlRobin Voetter <robin@voetter.nl> 2021-09-20 02:34:53+02:00
log619260d94d68bdecdac649fa7b156dc8962a9889
treea9396b49e069f4a7de010d3db2ce7c7f182acdaf
parent95e83afa98c5af89c6e5f40d559eb54c6c31a54e

Address Spaces: Fix comments in Ast.zig


1 files changed, 4 insertions(+), 4 deletions(-)

lib/std/zig/Ast.zig+4-4
......@@ -2961,9 +2961,9 @@ pub const Node = struct {
29612961 type_node: Index,
29622962 /// Populated if align(A) is present.
29632963 align_node: Index,
2964 /// Populated if linksection(A) is present.
2965 addrspace_node: Index,
29662964 /// Populated if addrspace(A) is present.
2965 addrspace_node: Index,
2966 /// Populated if linksection(A) is present.
29672967 section_node: Index,
29682968 };
29692969
......@@ -2995,9 +2995,9 @@ pub const Node = struct {
29952995 param: Index,
29962996 /// Populated if align(A) is present.
29972997 align_expr: Index,
2998 /// Populated if linksection(A) is present.
2999 addrspace_expr: Index,
30002998 /// Populated if addrspace(A) is present.
2999 addrspace_expr: Index,
3000 /// Populated if linksection(A) is present.
30013001 section_expr: Index,
30023002 /// Populated if callconv(A) is present.
30033003 callconv_expr: Index,