aboutsummaryrefslogtreecommitdiff
path: root/src/analyze.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-08-22 12:55:09 -0400
committerAndrew Kelley <andrew@ziglang.org>2019-08-22 12:56:35 -0400
commit0d6a6c76eabcd020c5f58dc4667766b0e2756dfa (patch)
treefbdea15f00c303d136f38bfc9025baa736251227 /src/analyze.cpp
parent8460d5617cc12d614abf39f55ab85c783c4b35a8 (diff)
downloadzig-0d6a6c76eabcd020c5f58dc4667766b0e2756dfa.tar.gz
zig-0d6a6c76eabcd020c5f58dc4667766b0e2756dfa.zip
add missing "referenced here" notes for lazy values
Diffstat (limited to 'src/analyze.cpp')
-rw-r--r--src/analyze.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/analyze.cpp b/src/analyze.cpp
index 0a5de5fd36..ee67f259f0 100644
--- a/src/analyze.cpp
+++ b/src/analyze.cpp
@@ -1918,7 +1918,7 @@ static Error resolve_enum_zero_bits(CodeGen *g, ZigType *enum_type) {
if (enum_type->data.enumeration.resolve_status != ResolveStatusInvalid) {
enum_type->data.enumeration.resolve_status = ResolveStatusInvalid;
g->trace_err = add_node_error(g, decl_node,
- buf_sprintf("circular dependency: whether enum '%s' has non-zero size",
+ buf_sprintf("dependency loop: whether enum '%s' has non-zero size",
buf_ptr(&enum_type->name)));
}
return ErrorSemanticAnalyzeFail;
@@ -2095,7 +2095,7 @@ static Error resolve_struct_zero_bits(CodeGen *g, ZigType *struct_type) {
if (struct_type->data.structure.resolve_status != ResolveStatusInvalid) {
struct_type->data.structure.resolve_status = ResolveStatusInvalid;
g->trace_err = add_node_error(g, decl_node,
- buf_sprintf("circular dependency: whether struct '%s' has non-zero size",
+ buf_sprintf("dependency loop: whether struct '%s' has non-zero size",
buf_ptr(&struct_type->name)));
}
return ErrorSemanticAnalyzeFail;
@@ -2282,7 +2282,7 @@ static Error resolve_union_zero_bits(CodeGen *g, ZigType *union_type) {
if (union_type->data.unionation.resolve_status != ResolveStatusInvalid) {
union_type->data.unionation.resolve_status = ResolveStatusInvalid;
g->trace_err = add_node_error(g, decl_node,
- buf_sprintf("circular dependency: whether union '%s' has non-zero size",
+ buf_sprintf("dependency loop: whether union '%s' has non-zero size",
buf_ptr(&union_type->name)));
}
return ErrorSemanticAnalyzeFail;