| ... | @@ -1918,7 +1918,7 @@ static Error resolve_enum_zero_bits(CodeGen *g, ZigType *enum_type) { | ... | @@ -1918,7 +1918,7 @@ static Error resolve_enum_zero_bits(CodeGen *g, ZigType *enum_type) { |
| 1918 | if (enum_type->data.enumeration.resolve_status != ResolveStatusInvalid) { | 1918 | if (enum_type->data.enumeration.resolve_status != ResolveStatusInvalid) { |
| 1919 | enum_type->data.enumeration.resolve_status = ResolveStatusInvalid; | 1919 | enum_type->data.enumeration.resolve_status = ResolveStatusInvalid; |
| 1920 | g->trace_err = add_node_error(g, decl_node, | 1920 | g->trace_err = add_node_error(g, decl_node, |
| 1921 | buf_sprintf("circular dependency: whether enum '%s' has non-zero size", | 1921 | buf_sprintf("dependency loop: whether enum '%s' has non-zero size", |
| 1922 | buf_ptr(&enum_type->name))); | 1922 | buf_ptr(&enum_type->name))); |
| 1923 | } | 1923 | } |
| 1924 | return ErrorSemanticAnalyzeFail; | 1924 | return ErrorSemanticAnalyzeFail; |
| ... | @@ -2095,7 +2095,7 @@ static Error resolve_struct_zero_bits(CodeGen *g, ZigType *struct_type) { | ... | @@ -2095,7 +2095,7 @@ static Error resolve_struct_zero_bits(CodeGen *g, ZigType *struct_type) { |
| 2095 | if (struct_type->data.structure.resolve_status != ResolveStatusInvalid) { | 2095 | if (struct_type->data.structure.resolve_status != ResolveStatusInvalid) { |
| 2096 | struct_type->data.structure.resolve_status = ResolveStatusInvalid; | 2096 | struct_type->data.structure.resolve_status = ResolveStatusInvalid; |
| 2097 | g->trace_err = add_node_error(g, decl_node, | 2097 | g->trace_err = add_node_error(g, decl_node, |
| 2098 | buf_sprintf("circular dependency: whether struct '%s' has non-zero size", | 2098 | buf_sprintf("dependency loop: whether struct '%s' has non-zero size", |
| 2099 | buf_ptr(&struct_type->name))); | 2099 | buf_ptr(&struct_type->name))); |
| 2100 | } | 2100 | } |
| 2101 | return ErrorSemanticAnalyzeFail; | 2101 | return ErrorSemanticAnalyzeFail; |
| ... | @@ -2282,7 +2282,7 @@ static Error resolve_union_zero_bits(CodeGen *g, ZigType *union_type) { | ... | @@ -2282,7 +2282,7 @@ static Error resolve_union_zero_bits(CodeGen *g, ZigType *union_type) { |
| 2282 | if (union_type->data.unionation.resolve_status != ResolveStatusInvalid) { | 2282 | if (union_type->data.unionation.resolve_status != ResolveStatusInvalid) { |
| 2283 | union_type->data.unionation.resolve_status = ResolveStatusInvalid; | 2283 | union_type->data.unionation.resolve_status = ResolveStatusInvalid; |
| 2284 | g->trace_err = add_node_error(g, decl_node, | 2284 | g->trace_err = add_node_error(g, decl_node, |
| 2285 | buf_sprintf("circular dependency: whether union '%s' has non-zero size", | 2285 | buf_sprintf("dependency loop: whether union '%s' has non-zero size", |
| 2286 | buf_ptr(&union_type->name))); | 2286 | buf_ptr(&union_type->name))); |
| 2287 | } | 2287 | } |
| 2288 | return ErrorSemanticAnalyzeFail; | 2288 | return ErrorSemanticAnalyzeFail; |