Commit 0adc1db7 authored by Russ Cox's avatar Russ Cox

until 6g implements it, warn about using int in interface.

R=ken
OCL=16935
CL=16935
parent 89319cfb
......@@ -1507,6 +1507,10 @@ signame(Type *t, int block)
ss->local = s->local;
//print("signame: %d %lS\n", ss->local, ss);
}
if(strcmp(ss->name, "sigt_int32") == 0)
warn("int32 -> interface");
return ss;
bad:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment