aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
Diffstat (limited to 'pkg')
-rw-r--r--pkg/compiler/compiler.go11
1 files changed, 3 insertions, 8 deletions
diff --git a/pkg/compiler/compiler.go b/pkg/compiler/compiler.go
index 3afab96d9..6de0219b1 100644
--- a/pkg/compiler/compiler.go
+++ b/pkg/compiler/compiler.go
@@ -386,17 +386,12 @@ func (comp *compiler) patchConsts(consts map[string]uint64) {
continue
}
// Produce a warning about unsupported syscall/resource/struct.
- // Unsupported syscalls are discarded.
- // Unsupported resource/struct lead to compilation error.
- // Fixing that would require removing all uses of the resource/struct.
+ // TODO(dvyukov): we should transitively remove everything that
+ // depends on unsupported things.
pos, typ, name := decl.Info()
- fn := comp.error
- if _, ok := decl.(*ast.Call); ok {
- fn = comp.warning
- }
if id := typ + " " + name; !comp.unsupported[id] {
comp.unsupported[id] = true
- fn(pos, "unsupported %v: %v due to missing const %v",
+ comp.warning(pos, "unsupported %v: %v due to missing const %v",
typ, name, missing)
}
}