mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
Merge pull request #384 from dbrotz/fix-local-label-segfault
Check if parent exists for local label reference
This commit is contained in:
@@ -735,6 +735,9 @@ void sym_Ref(char *tzSym)
|
||||
int isLocal = 0;
|
||||
|
||||
if (*tzSym == '.') {
|
||||
if (!pScope)
|
||||
fatalerror("Local label reference '%s' in main scope",
|
||||
tzSym);
|
||||
fullSymbolName(fullname, sizeof(fullname), tzSym,
|
||||
pScope);
|
||||
tzSym = fullname;
|
||||
|
||||
3
test/asm/local-ref-without-parent.asm
Normal file
3
test/asm/local-ref-without-parent.asm
Normal file
@@ -0,0 +1,3 @@
|
||||
SECTION "sec", ROM0
|
||||
|
||||
dw .test
|
||||
2
test/asm/local-ref-without-parent.out
Normal file
2
test/asm/local-ref-without-parent.out
Normal file
@@ -0,0 +1,2 @@
|
||||
ERROR: local-ref-without-parent.asm(3):
|
||||
Local label reference '.test' in main scope
|
||||
2
test/asm/local-ref-without-parent.out.pipe
Normal file
2
test/asm/local-ref-without-parent.out.pipe
Normal file
@@ -0,0 +1,2 @@
|
||||
ERROR: -(3):
|
||||
Local label reference '.test' in main scope
|
||||
Reference in New Issue
Block a user