You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This should report an error about Undefined label "foo", but it doesn't. It is accepted without complaints.
It does correctly report the error if the .importobj line is commented out or replaced with foo: or a .definelabel for foo. Additionally, if foo.o doesn't actually export foo, it also correctly reports the error (though that's hardly surprising).
The text was updated successfully, but these errors were encountered:
This is the smallest example I could come up with to show the problem. Imagine this is the contents of
test.asm
:foo.o
exists and exports the symbolfoo
.This should report an error about
Undefined label "foo"
, but it doesn't. It is accepted without complaints.It does correctly report the error if the
.importobj
line is commented out or replaced withfoo:
or a.definelabel
forfoo
. Additionally, iffoo.o
doesn't actually exportfoo
, it also correctly reports the error (though that's hardly surprising).The text was updated successfully, but these errors were encountered: