mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Allow multiple identical exported numeric constants (#1341)
This still doesn't allow identical exported label constants. That can be addressed when or if it's requested for a real use case. Symbols only store one source filename + line number, so this arbitrarily keeps the last read symbol as the reported one.
This commit is contained in:
2
test/link/same-consts/a.asm
Normal file
2
test/link/same-consts/a.asm
Normal file
@@ -0,0 +1,2 @@
|
||||
def constant equ 42
|
||||
export constant
|
||||
2
test/link/same-consts/b.asm
Normal file
2
test/link/same-consts/b.asm
Normal file
@@ -0,0 +1,2 @@
|
||||
def constant equ 42
|
||||
export constant
|
||||
0
test/link/same-consts/out.err
Normal file
0
test/link/same-consts/out.err
Normal file
@@ -190,6 +190,15 @@ tryDiff "$test"/out.err "$outtemp"
|
||||
tryCmp "$test"/out.gb "$gbtemp"
|
||||
evaluateTest
|
||||
|
||||
test="same-consts"
|
||||
startTest
|
||||
"$RGBASM" -o "$otemp" "$test"/a.asm
|
||||
"$RGBASM" -o "$gbtemp2" "$test"/b.asm
|
||||
continueTest
|
||||
rgblinkQuiet -o "$gbtemp" "$gbtemp2" "$otemp" 2>"$outtemp"
|
||||
tryDiff "$test"/out.err "$outtemp"
|
||||
evaluateTest
|
||||
|
||||
test="scramble-romx"
|
||||
startTest
|
||||
"$RGBASM" -o "$otemp" "$test"/a.asm
|
||||
|
||||
Reference in New Issue
Block a user