Lowercase "error:" in -Werror output

This commit is contained in:
Rangi
2021-11-19 23:04:24 -05:00
committed by Eldred Habert
parent cedfd2582a
commit f82603f196
115 changed files with 308 additions and 308 deletions

View File

@@ -240,7 +240,7 @@ void processWarningFlag(char *flag)
return;
case '=':
/* `-Werror=XXX */
/* `-Werror=XXX` */
setError = true;
processWarningFlag(errorFlag + 1); /* Skip the `=` */
setError = false;
@@ -336,7 +336,7 @@ void error(char const *fmt, ...)
va_list args;
va_start(args, fmt);
printDiag(fmt, args, "ERROR: ", ":\n ", NULL);
printDiag(fmt, args, "error: ", ":\n ", NULL);
va_end(args);
nbErrors++;
}
@@ -364,7 +364,7 @@ void warning(enum WarningID id, char const *fmt, ...)
return;
case WARNING_ERROR:
printDiag(fmt, args, "ERROR: ", ": [-Werror=%s]\n ", flag);
printDiag(fmt, args, "error: ", ": [-Werror=%s]\n ", flag);
va_end(args);
return;

View File

@@ -1,3 +1,3 @@
ERROR: align-large-ofs.asm(2):
error: align-large-ofs.asm(2):
Alignment offset (2) must be smaller than alignment size (2)
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: align-pc-outside-section.asm(1):
error: align-pc-outside-section.asm(1):
Cannot output data outside of a SECTION
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: align-unattainable.asm(3):
error: align-unattainable.asm(3):
Section "X"'s alignment cannot be attained in WRAM0
error: Assembly aborted (1 error)!

View File

@@ -1,7 +1,7 @@
ERROR: anon-label-bad.asm(2):
error: anon-label-bad.asm(2):
Label "!0" created outside of a SECTION
ERROR: anon-label-bad.asm(6):
error: anon-label-bad.asm(6):
Reference to anonymous label 2 before, when only 1 has been created so far
ERROR: anon-label-bad.asm(18):
error: anon-label-bad.asm(18):
syntax error, unexpected :
error: Assembly aborted (3 errors)!

View File

@@ -1,7 +1,7 @@
ERROR: anon-label-bad.asm(2):
error: anon-label-bad.asm(2):
Label "!0" created outside of a SECTION
ERROR: anon-label-bad.asm(6):
error: anon-label-bad.asm(6):
Reference to anonymous label 2 before, when only 1 has been created so far
ERROR: anon-label-bad.asm(18):
error: anon-label-bad.asm(18):
syntax error
error: Assembly aborted (3 errors)!

View File

@@ -1,3 +1,3 @@
ERROR: assert-nosect-bank.asm(1):
error: assert-nosect-bank.asm(1):
PC has no bank outside a section
error: Assembly aborted (1 error)!

View File

@@ -1,10 +1,10 @@
ERROR: assert.asm(4):
error: assert.asm(4):
Assertion failed
warning: assert.asm(10): [-Wassert]
Assertion failed
ERROR: assert.asm(18):
error: assert.asm(18):
Expected constant expression: 'FloatingBase' is not constant at assembly time
ERROR: assert.asm(18):
error: assert.asm(18):
Assertion failed
FATAL: assert.asm(21):
Assertion failed

View File

@@ -1,3 +1,3 @@
ERROR: assert@-no-sect.asm(1):
error: assert@-no-sect.asm(1):
PC has no value outside a section
error: Assembly aborted (1 error)!

View File

@@ -1,9 +1,9 @@
ERROR: bank.asm(13) -> bank.asm::def_sect(8):
error: bank.asm(13) -> bank.asm::def_sect(8):
Expected constant expression: Section "ROMX_bad"'s bank is not known
ERROR: bank.asm(15) -> bank.asm::def_sect(8):
error: bank.asm(15) -> bank.asm::def_sect(8):
Expected constant expression: Section "VRAM_bad"'s bank is not known
ERROR: bank.asm(17) -> bank.asm::def_sect(8):
error: bank.asm(17) -> bank.asm::def_sect(8):
Expected constant expression: Section "SRAM_bad"'s bank is not known
ERROR: bank.asm(20) -> bank.asm::def_sect(8):
error: bank.asm(20) -> bank.asm::def_sect(8):
Expected constant expression: Section "WRAMX_bad"'s bank is not known
error: Assembly aborted (4 errors)!

View File

@@ -1,5 +1,5 @@
ERROR: block-comment-termination-error.asm(1):
error: block-comment-termination-error.asm(1):
Unterminated block comment
ERROR: block-comment-termination-error.asm(1):
error: block-comment-termination-error.asm(1):
syntax error, unexpected end of buffer
error: Assembly aborted (2 errors)!

View File

@@ -1,5 +1,5 @@
ERROR: block-comment-termination-error.asm(1):
error: block-comment-termination-error.asm(1):
Unterminated block comment
ERROR: block-comment-termination-error.asm(1):
error: block-comment-termination-error.asm(1):
syntax error
error: Assembly aborted (2 errors)!

View File

@@ -1,7 +1,7 @@
ERROR: bracketed-symbols.asm(16):
error: bracketed-symbols.asm(16):
Formatting string as type 'X'
ERROR: bracketed-symbols.asm(20):
error: bracketed-symbols.asm(20):
"Label" does not have a constant value
ERROR: bracketed-symbols.asm(21):
error: bracketed-symbols.asm(21):
Expected constant PC but section is not fixed
error: Assembly aborted (3 errors)!

View File

@@ -1,57 +1,57 @@
ERROR: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(7):
error: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(7):
'__LINE__' already defined as constant at <builtin>
ERROR: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(8):
error: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(8):
'__LINE__' already defined as constant at <builtin>
ERROR: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(11):
error: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(11):
'__LINE__' already defined at <builtin>
ERROR: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(12):
error: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(12):
'__LINE__' already defined at <builtin>
ERROR: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(16):
error: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(16):
Built-in symbol '__LINE__' cannot be purged
ERROR: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(17):
error: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(17):
Built-in symbol '__LINE__' cannot be purged
ERROR: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(20):
error: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(20):
'__LINE__' already defined at <builtin>
ERROR: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(21):
error: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(21):
'__LINE__' already defined at <builtin>
ERROR: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(24):
error: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(24):
'__LINE__' already defined as constant at <builtin>
ERROR: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(25):
error: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(25):
'__LINE__' already defined as constant at <builtin>
ERROR: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(28):
error: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(28):
'__LINE__' already defined at <builtin>
ERROR: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(29):
error: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(29):
'__LINE__' already defined at <builtin>
ERROR: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(32):
error: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(32):
'__LINE__' already defined as constant at <builtin>
ERROR: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(33):
error: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(33):
'__LINE__' already defined as constant at <builtin>
ERROR: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(36):
error: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(36):
'__LINE__' already defined as non-EQUS at <builtin>
ERROR: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(37):
error: builtin-overwrite.asm(42) -> builtin-overwrite.asm::tickle(37):
'__LINE__' already defined as non-EQUS at <builtin>
ERROR: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(16):
error: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(16):
Built-in symbol '__FILE__' cannot be purged
ERROR: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(17):
error: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(17):
Built-in symbol '__FILE__' cannot be purged
ERROR: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(20):
error: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(20):
'__FILE__' already defined at <builtin>
ERROR: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(21):
error: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(21):
'__FILE__' already defined at <builtin>
ERROR: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(24):
error: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(24):
'__FILE__' already defined as constant at <builtin>
ERROR: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(25):
error: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(25):
'__FILE__' already defined as constant at <builtin>
ERROR: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(28):
error: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(28):
'__FILE__' already defined at <builtin>
ERROR: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(29):
error: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(29):
'__FILE__' already defined at <builtin>
ERROR: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(32):
error: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(32):
'__FILE__' already defined as constant at <builtin>
ERROR: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(33):
error: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(33):
'__FILE__' already defined as constant at <builtin>
ERROR: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(36):
error: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(36):
Built-in symbol '__FILE__' cannot be redefined
ERROR: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(37):
error: builtin-overwrite.asm(43) -> builtin-overwrite.asm::tickle(37):
Built-in symbol '__FILE__' cannot be redefined
error: Assembly aborted (28 errors)!

View File

@@ -1,15 +1,15 @@
ERROR: code-after-endm-endr-endc.asm(6):
error: code-after-endm-endr-endc.asm(6):
syntax error, unexpected PRINTLN, expecting newline or end of buffer
ERROR: code-after-endm-endr-endc.asm(7):
error: code-after-endm-endr-endc.asm(7):
Macro "mac" not defined
ERROR: code-after-endm-endr-endc.asm(12):
error: code-after-endm-endr-endc.asm(12):
syntax error, unexpected PRINTLN, expecting newline or end of buffer
ERROR: code-after-endm-endr-endc.asm(17):
error: code-after-endm-endr-endc.asm(17):
syntax error, unexpected PRINTLN, expecting newline
ERROR: code-after-endm-endr-endc.asm(19):
error: code-after-endm-endr-endc.asm(19):
syntax error, unexpected PRINTLN, expecting newline or end of buffer
ERROR: code-after-endm-endr-endc.asm(23):
error: code-after-endm-endr-endc.asm(23):
syntax error, unexpected PRINTLN, expecting newline
ERROR: code-after-endm-endr-endc.asm(25):
error: code-after-endm-endr-endc.asm(25):
syntax error, unexpected PRINTLN, expecting newline or end of buffer
error: Assembly aborted (7 errors)!

View File

@@ -1,5 +1,5 @@
ERROR: compound-assignment.asm(36):
error: compound-assignment.asm(36):
'__LINE__' already defined as constant at <builtin>
ERROR: compound-assignment.asm(39):
error: compound-assignment.asm(39):
Expected constant expression: 'UnDeFiNeD' is not constant at assembly time
error: Assembly aborted (2 errors)!

View File

@@ -1,3 +1,3 @@
ERROR: def.asm(23):
error: def.asm(23):
'constant' already defined at def.asm(10)
error: Assembly aborted (1 error)!

View File

@@ -1,5 +1,5 @@
ERROR: def.asm(23):
error: def.asm(23):
'constant' already defined at def.asm(10)
ERROR: def.asm(29):
error: def.asm(29):
syntax error
error: Assembly aborted (2 errors)!

View File

@@ -1,5 +1,5 @@
warning: deprecated-pi.asm(2): [-Wobsolete]
`_PI` is deprecated; use 3.14159
ERROR: deprecated-pi.asm(3):
error: deprecated-pi.asm(3):
Built-in symbol '_PI' cannot be purged
error: Assembly aborted (1 error)!

View File

@@ -1,4 +1,4 @@
ERROR: ds-bad.asm(3):
error: ds-bad.asm(3):
Expected constant expression: 'unknown' is not constant at assembly time
warning: ds-bad.asm(4): [-Wtruncation]
Expression must be 8-bit

View File

@@ -1,4 +1,4 @@
ERROR: duplicate-section.asm(4):
error: duplicate-section.asm(4):
Section already defined previously at duplicate-section.asm(2)
FATAL: duplicate-section.asm(4):
Cannot create section "sec" (1 error)

View File

@@ -1,5 +1,5 @@
ERROR: error-recovery.asm(3):
error: error-recovery.asm(3):
syntax error, unexpected number
ERROR: error-recovery.asm(5) -> error-recovery.asm::REPT~1(7):
error: error-recovery.asm(5) -> error-recovery.asm::REPT~1(7):
syntax error, unexpected identifier
error: Assembly aborted (2 errors)!

View File

@@ -1,5 +1,5 @@
ERROR: error-recovery.asm(3):
error: error-recovery.asm(3):
syntax error
ERROR: error-recovery.asm(5) -> error-recovery.asm::REPT~1(7):
error: error-recovery.asm(5) -> error-recovery.asm::REPT~1(7):
syntax error
error: Assembly aborted (2 errors)!

View File

@@ -1,3 +1,3 @@
ERROR: expand-empty-string.asm(6) -> expand-empty-string.asm::test(4):
error: expand-empty-string.asm(6) -> expand-empty-string.asm::test(4):
syntax error, unexpected number
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: expand-empty-string.asm(6) -> expand-empty-string.asm::test(4):
error: expand-empty-string.asm(6) -> expand-empty-string.asm::test(4):
syntax error
error: Assembly aborted (1 error)!

View File

@@ -1,5 +1,5 @@
ERROR: ff00+c-bad.asm(8):
error: ff00+c-bad.asm(8):
Expected constant expression equal to $FF00 for "$ff00+c"
ERROR: ff00+c-bad.asm(9):
error: ff00+c-bad.asm(9):
Expected constant expression equal to $FF00 for "$ff00+c"
error: Assembly aborted (2 errors)!

View File

@@ -1,15 +1,15 @@
ERROR: fixed-oob.asm(1):
error: fixed-oob.asm(1):
Section "ROM0"'s fixed address 0xbabe is outside of range [0; 0x7fff]
ERROR: fixed-oob.asm(3):
error: fixed-oob.asm(3):
Section "ROMX"'s fixed address 0xbeef is outside of range [0x4000; 0x7fff]
ERROR: fixed-oob.asm(5):
error: fixed-oob.asm(5):
Section "VRAM"'s fixed address 0xc0de is outside of range [0x8000; 0x9fff]
ERROR: fixed-oob.asm(7):
error: fixed-oob.asm(7):
Section "SRAM"'s fixed address 0xcafe is outside of range [0xa000; 0xbfff]
ERROR: fixed-oob.asm(11):
error: fixed-oob.asm(11):
Section "WRAMX"'s fixed address 0xdad is outside of range [0xd000; 0xdfff]
ERROR: fixed-oob.asm(13):
error: fixed-oob.asm(13):
Section "OAM"'s fixed address 0xcab is outside of range [0xfe00; 0xfe9f]
ERROR: fixed-oob.asm(15):
error: fixed-oob.asm(15):
Section "HRAM"'s fixed address 0xbad is outside of range [0xff80; 0xfffe]
error: Assembly aborted (7 errors)!

View File

@@ -1,10 +1,10 @@
warning: for.asm(12): [-Wbackwards-for]
FOR goes backwards from 2 to 1 by 1
ERROR: for.asm(16):
error: for.asm(16):
FOR cannot have a step value of 0
warning: for.asm(20): [-Wbackwards-for]
FOR goes backwards from 1 to 2 by -1
ERROR: for.asm(45) -> for.asm::REPT~4(51):
error: for.asm(45) -> for.asm::REPT~4(51):
'v' already defined as constant at for.asm(45) -> for.asm::REPT~4(49)
FATAL: for.asm(45) -> for.asm::REPT~4(51):
Failed to update FOR symbol value

View File

@@ -1,34 +1,34 @@
ERROR: format-truncation.asm(5):
error: format-truncation.asm(5):
Formatted numeric value too long
ERROR: format-truncation.asm(6):
error: format-truncation.asm(6):
Formatted numeric value too long
ERROR: format-truncation.asm(7):
error: format-truncation.asm(7):
Fractional width 260 too long, limiting to 255
ERROR: format-truncation.asm(7):
error: format-truncation.asm(7):
Formatted numeric value too long
ERROR: format-truncation.asm(8):
error: format-truncation.asm(8):
Formatted string value too long
ERROR: format-truncation.asm(9):
error: format-truncation.asm(9):
Formatted string value too long
ERROR: format-truncation.asm(11):
error: format-truncation.asm(11):
Formatted numeric value too long
warning: format-truncation.asm(11): [-Wlong-string]
String constant too long
ERROR: format-truncation.asm(12):
error: format-truncation.asm(12):
Formatted numeric value too long
warning: format-truncation.asm(12): [-Wlong-string]
String constant too long
ERROR: format-truncation.asm(13):
error: format-truncation.asm(13):
Fractional width 260 too long, limiting to 255
ERROR: format-truncation.asm(13):
error: format-truncation.asm(13):
Formatted numeric value too long
warning: format-truncation.asm(13): [-Wlong-string]
String constant too long
ERROR: format-truncation.asm(14):
error: format-truncation.asm(14):
Formatted string value too long
warning: format-truncation.asm(14): [-Wlong-string]
String constant too long
ERROR: format-truncation.asm(15):
error: format-truncation.asm(15):
Formatted string value too long
warning: format-truncation.asm(15): [-Wlong-string]
String constant too long

View File

@@ -1,3 +1,3 @@
ERROR: fragment-align.asm(25):
error: fragment-align.asm(25):
Section's alignment fails required alignment (offset from section start = $0004)
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: garbage_char.asm(1):
error: garbage_char.asm(1):
Unknown character 0xFF
error: Assembly aborted (1 error)!

View File

@@ -1,4 +1,4 @@
ERROR: if@-no-sect.asm(1):
error: if@-no-sect.asm(1):
PC has no value outside a section
warning: if@-no-sect.asm(1): [-Wnumeric-string]
Treating 2-character string as a number

View File

@@ -1,3 +1,3 @@
ERROR: incbin-empty-bad.asm(3):
error: incbin-empty-bad.asm(3):
Specified range in INCBIN is out of bounds (0 + 1 > 0)
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: incbin-end-0.asm(1):
error: incbin-end-0.asm(1):
Cannot output data outside of a SECTION
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: incbin-end-bad.asm(3):
error: incbin-end-bad.asm(3):
Specified range in INCBIN is out of bounds (123 + 1 > 123)
error: Assembly aborted (1 error)!

View File

@@ -1,4 +1,4 @@
ERROR: incompatible-alignment.asm(8):
error: incompatible-alignment.asm(8):
Section already declared with incompatible 256-byte alignment (offset 0)
FATAL: incompatible-alignment.asm(8):
Cannot create section "Test" (1 error)

View File

@@ -1,12 +1,12 @@
ERROR: interpolation-overflow.asm(4):
error: interpolation-overflow.asm(4):
Fractional width 99999999 too long, limiting to 255
ERROR: interpolation-overflow.asm(4):
error: interpolation-overflow.asm(4):
Formatted numeric value too long
warning: interpolation-overflow.asm(4): [-Wlarge-constant]
Precision of fixed-point constant is too large
while expanding symbol "0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
ERROR: interpolation-overflow.asm(4):
error: interpolation-overflow.asm(4):
Macro argument '\1' not defined
ERROR: interpolation-overflow.asm(4):
error: interpolation-overflow.asm(4):
syntax error, unexpected number
error: Assembly aborted (4 errors)!

View File

@@ -1,3 +1,3 @@
ERROR: invalid-empty-macro-arg.asm(1):
error: invalid-empty-macro-arg.asm(1):
Empty bracketed macro argument
error: Assembly aborted (1 error)!

View File

@@ -1,5 +1,5 @@
ERROR: invalid-macro-arg-character.asm(1):
error: invalid-macro-arg-character.asm(1):
Invalid character in bracketed macro argument '!'
ERROR: invalid-macro-arg-character.asm(1):
error: invalid-macro-arg-character.asm(1):
syntax error, unexpected >
error: Assembly aborted (2 errors)!

View File

@@ -1,3 +1,3 @@
ERROR: invalid-macro-arg-symbol.asm(1):
error: invalid-macro-arg-symbol.asm(1):
Bracketed symbol "foo" does not exist
error: Assembly aborted (1 error)!

View File

@@ -1,45 +1,45 @@
ERROR: invalid-utf-8-strings.asm(16):
error: invalid-utf-8-strings.asm(16):
STRLEN: Invalid UTF-8 byte 0xA3
ERROR: invalid-utf-8-strings.asm(16):
error: invalid-utf-8-strings.asm(16):
STRLEN: Invalid UTF-8 byte 0xA4
ERROR: invalid-utf-8-strings.asm(16):
error: invalid-utf-8-strings.asm(16):
STRLEN: Invalid UTF-8 byte 0xF0
ERROR: invalid-utf-8-strings.asm(16):
error: invalid-utf-8-strings.asm(16):
STRLEN: Invalid UTF-8 byte 0xA2
ERROR: invalid-utf-8-strings.asm(17):
error: invalid-utf-8-strings.asm(17):
STRLEN: Invalid UTF-8 byte 0xA3
ERROR: invalid-utf-8-strings.asm(17):
error: invalid-utf-8-strings.asm(17):
STRLEN: Invalid UTF-8 byte 0xA4
ERROR: invalid-utf-8-strings.asm(17):
error: invalid-utf-8-strings.asm(17):
STRLEN: Invalid UTF-8 byte 0xF0
ERROR: invalid-utf-8-strings.asm(17):
error: invalid-utf-8-strings.asm(17):
STRLEN: Invalid UTF-8 byte 0xA2
ERROR: invalid-utf-8-strings.asm(17):
error: invalid-utf-8-strings.asm(17):
STRSUB: Invalid UTF-8 byte 0xA3
ERROR: invalid-utf-8-strings.asm(17):
error: invalid-utf-8-strings.asm(17):
STRSUB: Invalid UTF-8 byte 0xA4
ERROR: invalid-utf-8-strings.asm(17):
error: invalid-utf-8-strings.asm(17):
STRSUB: Invalid UTF-8 byte 0xF0
ERROR: invalid-utf-8-strings.asm(17):
error: invalid-utf-8-strings.asm(17):
STRSUB: Invalid UTF-8 byte 0xA2
ERROR: invalid-utf-8-strings.asm(21):
error: invalid-utf-8-strings.asm(21):
STRLEN: Invalid UTF-8 byte 0xA3
ERROR: invalid-utf-8-strings.asm(21):
error: invalid-utf-8-strings.asm(21):
STRLEN: Invalid UTF-8 byte 0xA4
ERROR: invalid-utf-8-strings.asm(21):
error: invalid-utf-8-strings.asm(21):
STRLEN: Invalid UTF-8 byte 0xF0
ERROR: invalid-utf-8-strings.asm(21):
error: invalid-utf-8-strings.asm(21):
STRLEN: Invalid UTF-8 byte 0xA2
ERROR: invalid-utf-8-strings.asm(22):
error: invalid-utf-8-strings.asm(22):
STRLEN: Invalid UTF-8 byte 0xA3
ERROR: invalid-utf-8-strings.asm(22):
error: invalid-utf-8-strings.asm(22):
STRLEN: Invalid UTF-8 byte 0xA4
ERROR: invalid-utf-8-strings.asm(22):
error: invalid-utf-8-strings.asm(22):
STRLEN: Invalid UTF-8 byte 0xF0
ERROR: invalid-utf-8-strings.asm(22):
error: invalid-utf-8-strings.asm(22):
STRLEN: Invalid UTF-8 byte 0xA2
ERROR: invalid-utf-8-strings.asm(22):
error: invalid-utf-8-strings.asm(22):
STRSUB: Invalid UTF-8 byte 0xA3
ERROR: invalid-utf-8-strings.asm(22):
error: invalid-utf-8-strings.asm(22):
STRSUB: Invalid UTF-8 byte 0xA4
error: Assembly aborted (22 errors)!

View File

@@ -1,5 +1,5 @@
ERROR: invalid-utf-8.asm(6) -> invalid-utf-8.asm::m(4):
error: invalid-utf-8.asm(6) -> invalid-utf-8.asm::m(4):
Unknown character 0xCF
ERROR: invalid-utf-8.asm(6) -> invalid-utf-8.asm::m(4):
error: invalid-utf-8.asm(6) -> invalid-utf-8.asm::m(4):
Unknown character 0xD3
error: Assembly aborted (2 errors)!

View File

@@ -1,12 +1,12 @@
warning: isconst.asm(14) -> isconst.asm::test_expr(10): [-Wuser]
Test #1: Compile-time constant
ERROR: isconst.asm(15) -> isconst.asm::test_expr(9):
error: isconst.asm(15) -> isconst.asm::test_expr(9):
Expected constant expression: 'UnknownLabel' is not constant at assembly time
warning: isconst.asm(21) -> isconst.asm::test_expr(10): [-Wuser]
Test #3: Compile-time constant
warning: isconst.asm(22) -> isconst.asm::test_expr(10): [-Wuser]
Test #4: Compile-time constant
ERROR: isconst.asm(28) -> isconst.asm::test_expr(9):
error: isconst.asm(28) -> isconst.asm::test_expr(9):
Expected constant expression: 'FloatingLabel' is not constant at assembly time
warning: isconst.asm(29) -> isconst.asm::test_expr(10): [-Wuser]
Test #6: Compile-time constant

View File

@@ -1,37 +1,37 @@
ERROR: label-diff.asm(32) -> label-diff.asm::print_diff(20):
error: label-diff.asm(32) -> label-diff.asm::print_diff(20):
Expected constant expression: 'Known' is not constant at assembly time
ERROR: label-diff.asm(32) -> label-diff.asm::print_diff(21):
error: label-diff.asm(32) -> label-diff.asm::print_diff(21):
Expected constant expression: 'Known' is not constant at assembly time
ERROR: label-diff.asm(34) -> label-diff.asm::print_diff(20):
error: label-diff.asm(34) -> label-diff.asm::print_diff(20):
Expected constant expression: 'Unknown' is not constant at assembly time
ERROR: label-diff.asm(34) -> label-diff.asm::print_diff(21):
error: label-diff.asm(34) -> label-diff.asm::print_diff(21):
Expected constant expression: 'Unknown' is not constant at assembly time
ERROR: label-diff.asm(36) -> label-diff.asm::print_diff(20):
error: label-diff.asm(36) -> label-diff.asm::print_diff(20):
Expected constant expression: 'Known' is not constant at assembly time
ERROR: label-diff.asm(36) -> label-diff.asm::print_diff(21):
error: label-diff.asm(36) -> label-diff.asm::print_diff(21):
Expected constant expression: 'Unknown' is not constant at assembly time
ERROR: label-diff.asm(38) -> label-diff.asm::print_diff(20):
error: label-diff.asm(38) -> label-diff.asm::print_diff(20):
Expected constant expression: 'Unknown' is not constant at assembly time
ERROR: label-diff.asm(38) -> label-diff.asm::print_diff(21):
error: label-diff.asm(38) -> label-diff.asm::print_diff(21):
Expected constant expression: 'Unknown2' is not constant at assembly time
ERROR: label-diff.asm(45) -> label-diff.asm::print_diff(20):
error: label-diff.asm(45) -> label-diff.asm::print_diff(20):
Expected constant expression: 'Known' is not constant at assembly time
ERROR: label-diff.asm(45) -> label-diff.asm::print_diff(21):
error: label-diff.asm(45) -> label-diff.asm::print_diff(21):
Expected constant expression: 'Known' is not constant at assembly time
ERROR: label-diff.asm(47) -> label-diff.asm::print_diff(20):
error: label-diff.asm(47) -> label-diff.asm::print_diff(20):
Expected constant expression: 'Unknown' is not constant at assembly time
ERROR: label-diff.asm(47) -> label-diff.asm::print_diff(21):
error: label-diff.asm(47) -> label-diff.asm::print_diff(21):
Expected constant expression: 'Unknown' is not constant at assembly time
ERROR: label-diff.asm(58) -> label-diff.asm::print_diff(20):
error: label-diff.asm(58) -> label-diff.asm::print_diff(20):
Expected constant expression: PC is not constant at assembly time
ERROR: label-diff.asm(58) -> label-diff.asm::print_diff(21):
error: label-diff.asm(58) -> label-diff.asm::print_diff(21):
Expected constant expression: PC is not constant at assembly time
ERROR: label-diff.asm(60) -> label-diff.asm::print_diff(20):
error: label-diff.asm(60) -> label-diff.asm::print_diff(20):
Expected constant expression: 'Known' is not constant at assembly time
ERROR: label-diff.asm(60) -> label-diff.asm::print_diff(21):
error: label-diff.asm(60) -> label-diff.asm::print_diff(21):
Expected constant expression: PC is not constant at assembly time
ERROR: label-diff.asm(62) -> label-diff.asm::print_diff(20):
error: label-diff.asm(62) -> label-diff.asm::print_diff(20):
Expected constant expression: 'Unknown' is not constant at assembly time
ERROR: label-diff.asm(62) -> label-diff.asm::print_diff(21):
error: label-diff.asm(62) -> label-diff.asm::print_diff(21):
Expected constant expression: PC is not constant at assembly time
error: Assembly aborted (18 errors)!

View File

@@ -1,21 +1,21 @@
ERROR: label-macro-arg.asm(38) -> label-macro-arg.asm::test_char(25):
error: label-macro-arg.asm(38) -> label-macro-arg.asm::test_char(25):
syntax error, unexpected =
while expanding symbol "VAR_DEF"
ERROR: label-macro-arg.asm(38) -> label-macro-arg.asm::test_char(26):
error: label-macro-arg.asm(38) -> label-macro-arg.asm::test_char(26):
syntax error, unexpected =
ERROR: label-macro-arg.asm(38) -> label-macro-arg.asm::test_char(29):
error: label-macro-arg.asm(38) -> label-macro-arg.asm::test_char(29):
Interpolated symbol "sizeof_.something" does not exist
ERROR: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(25):
error: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(25):
Label "sizeof_" created outside of a SECTION
while expanding symbol "VAR_DEF"
ERROR: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(25):
error: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(25):
Macro "something" not defined
ERROR: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(26):
error: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(26):
'sizeof_' already defined at label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(25)
ERROR: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(26):
error: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(26):
Macro "something" not defined
ERROR: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(29):
error: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(29):
Invalid format spec 'sizeof_'
ERROR: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(29):
error: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(29):
Interpolated symbol "something" does not exist
error: Assembly aborted (9 errors)!

View File

@@ -1,24 +1,24 @@
ERROR: label-macro-arg.asm(38) -> label-macro-arg.asm::test_char(25):
error: label-macro-arg.asm(38) -> label-macro-arg.asm::test_char(25):
Local label 'sizeof_.something' in main scope
while expanding symbol "VAR_DEF"
ERROR: label-macro-arg.asm(38) -> label-macro-arg.asm::test_char(25):
error: label-macro-arg.asm(38) -> label-macro-arg.asm::test_char(25):
syntax error
while expanding symbol "VAR_DEF"
ERROR: label-macro-arg.asm(38) -> label-macro-arg.asm::test_char(26):
error: label-macro-arg.asm(38) -> label-macro-arg.asm::test_char(26):
Local label 'sizeof_.something' in main scope
ERROR: label-macro-arg.asm(38) -> label-macro-arg.asm::test_char(29):
error: label-macro-arg.asm(38) -> label-macro-arg.asm::test_char(29):
Interpolated symbol "sizeof_.something" does not exist
ERROR: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(25):
error: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(25):
Label "sizeof_" created outside of a SECTION
while expanding symbol "VAR_DEF"
ERROR: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(25):
error: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(25):
Macro "something" not defined
ERROR: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(26):
error: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(26):
'sizeof_' already defined at label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(25)
ERROR: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(26):
error: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(26):
Macro "something" not defined
ERROR: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(29):
error: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(29):
Invalid format spec 'sizeof_'
ERROR: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(29):
error: label-macro-arg.asm(39) -> label-macro-arg.asm::test_char(29):
Interpolated symbol "something" does not exist
error: Assembly aborted (10 errors)!

View File

@@ -1,3 +1,3 @@
ERROR: label-outside-section.asm(1):
error: label-outside-section.asm(1):
Label "bad" created outside of a SECTION
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: label-redefinition.asm(7):
error: label-redefinition.asm(7):
'Sym' already defined at label-redefinition.asm(6) -> label-redefinition.asm::m(4)
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: line-continuation-whitespace.asm(7):
error: line-continuation-whitespace.asm(7):
Label "foo" created outside of a SECTION
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: line-continuation.asm(7):
error: line-continuation.asm(7):
Label "foo" created outside of a SECTION
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: load-fragment.asm(2):
error: load-fragment.asm(2):
`LOAD FRAGMENT` is not allowed
error: Assembly aborted (1 error)!

View File

@@ -1,11 +1,11 @@
ERROR: load-overflow.asm(5):
error: load-overflow.asm(5):
Section 'Overflow' grew too big (max size = 0x8000 bytes, reached 0x8001).
ERROR: load-overflow.asm(5):
error: load-overflow.asm(5):
Section 'oops' grew too big (max size = 0x2000 bytes, reached 0x2001).
ERROR: load-overflow.asm(13):
error: load-overflow.asm(13):
Section 'Moar overflow' grew too big (max size = 0x8000 bytes, reached 0x8001).
ERROR: load-overflow.asm(22):
error: load-overflow.asm(22):
Section 'lol' grew too big (max size = 0x2000 bytes, reached 0x2001).
ERROR: load-overflow.asm(25):
error: load-overflow.asm(25):
Section 'Not overflowing' grew too big (max size = 0x8000 bytes, reached 0x8001).
error: Assembly aborted (5 errors)!

View File

@@ -1,5 +1,5 @@
ERROR: load-rom.asm(3):
error: load-rom.asm(3):
`LOAD` blocks cannot create a ROM section
ERROR: load-rom.asm(5):
error: load-rom.asm(5):
Found `ENDL` outside of a `LOAD` block
error: Assembly aborted (2 errors)!

View File

@@ -1,3 +1,3 @@
ERROR: local-purge.asm(8):
error: local-purge.asm(8):
Interpolated symbol ".loc" does not exist
error: Assembly aborted (1 error)!

View File

@@ -1,6 +1,6 @@
warning: local-truncated.asm(10): [-Wlong-string]
Symbol name too long, got truncated
ERROR: local-truncated.asm(10):
error: local-truncated.asm(10):
'a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001' already defined at local-truncated.asm(3)
warning: local-truncated.asm(11): [-Wlong-string]
Symbol name too long, got truncated

View File

@@ -1,3 +1,3 @@
ERROR: local-without-parent.asm(2):
error: local-without-parent.asm(2):
Local label '.test' in main scope
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: local-wrong-parent.asm(5):
error: local-wrong-parent.asm(5):
Not currently in the scope of 'WrongParent'
error: Assembly aborted (1 error)!

View File

@@ -1,5 +1,5 @@
ERROR: macro-@.asm(1):
error: macro-@.asm(1):
Label "foo" created outside of a SECTION
ERROR: macro-@.asm(1):
error: macro-@.asm(1):
"@" is not a macro
error: Assembly aborted (2 errors)!

View File

@@ -1,3 +1,3 @@
ERROR: macro-arg-in-string.asm(12):
error: macro-arg-in-string.asm(12):
Illegal character escape '!'
error: Assembly aborted (1 error)!

View File

@@ -1,5 +1,5 @@
ERROR: macro-syntax.asm(13):
error: macro-syntax.asm(13):
syntax error, unexpected identifier, expecting newline
ERROR: macro-syntax.asm(15):
error: macro-syntax.asm(15):
syntax error, unexpected ENDM
error: Assembly aborted (2 errors)!

View File

@@ -1,5 +1,5 @@
ERROR: macro-syntax.asm(13):
error: macro-syntax.asm(13):
syntax error
ERROR: macro-syntax.asm(15):
error: macro-syntax.asm(15):
syntax error
error: Assembly aborted (2 errors)!

View File

@@ -1,4 +1,4 @@
ERROR: multi-line-strings.asm(23):
error: multi-line-strings.asm(23):
Unterminated string
warning: multi-line-strings.asm(35): [-Wuser]
check the line number

View File

@@ -10,10 +10,10 @@ warning: multiple-charmaps.asm(90) -> multiple-charmaps.asm::print_mapped(27): [
Treating 2-character string as a number
warning: multiple-charmaps.asm(98) -> multiple-charmaps.asm::print_mapped(27): [-Wnumeric-string]
Treating 2-character string as a number
ERROR: multiple-charmaps.asm(100) -> multiple-charmaps.asm::new_(7):
error: multiple-charmaps.asm(100) -> multiple-charmaps.asm::new_(7):
Charmap 'map1' already exists
ERROR: multiple-charmaps.asm(102) -> multiple-charmaps.asm::set_(13):
error: multiple-charmaps.asm(102) -> multiple-charmaps.asm::set_(13):
Charmap 'map5' doesn't exist
ERROR: multiple-charmaps.asm(104) -> multiple-charmaps.asm::pop_(23):
error: multiple-charmaps.asm(104) -> multiple-charmaps.asm::pop_(23):
No entries in the charmap stack
error: Assembly aborted (3 errors)!

View File

@@ -1,3 +1,3 @@
ERROR: narg-nosect.asm(1):
error: narg-nosect.asm(1):
_NARG does not make sense outside of a macro
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: nested-brackets.asm(5):
error: nested-brackets.asm(5):
Missing }
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: nested-expansions.asm(6) -> nested-expansions.asm::test(4):
error: nested-expansions.asm(6) -> nested-expansions.asm::test(4):
Macro "qux" not defined
error: Assembly aborted (1 error)!

View File

@@ -1,7 +1,7 @@
warning: nested-macrodef.asm(26) -> nested-macrodef.asm::outer(22): [-Wuser]
Nested macros shouldn't work, whose argument would be \1?
ERROR: nested-macrodef.asm(26) -> nested-macrodef.asm::outer(24):
error: nested-macrodef.asm(26) -> nested-macrodef.asm::outer(24):
Unterminated macro definition
ERROR: nested-macrodef.asm(27):
error: nested-macrodef.asm(27):
Macro "inner" not defined
error: Assembly aborted (2 errors)!

View File

@@ -1,7 +1,7 @@
warning: nested-macrodef.asm(26) -> nested-macrodef.asm::outer(22): [-Wuser]
Nested macros shouldn't work, whose argument would be \1?
ERROR: nested-macrodef.asm(26) -> nested-macrodef.asm::outer(24):
error: nested-macrodef.asm(26) -> nested-macrodef.asm::outer(24):
Unterminated macro definition
ERROR: nested-macrodef.asm(27):
error: nested-macrodef.asm(27):
syntax error
error: Assembly aborted (2 errors)!

View File

@@ -1,3 +1,3 @@
ERROR: null-in-macro.asm(4) -> null-in-macro.asm::foo(2):
error: null-in-macro.asm(4) -> null-in-macro.asm::foo(2):
Unknown character 0x00
error: Assembly aborted (1 error)!

View File

@@ -1,5 +1,5 @@
ERROR: pc-bank.asm(2):
error: pc-bank.asm(2):
Source address $2a00 not between $FF00 to $FFFF
ERROR: pc-bank.asm(11):
error: pc-bank.asm(11):
Expected constant expression: Current section's bank is not known
error: Assembly aborted (2 errors)!

View File

@@ -1,3 +1,3 @@
ERROR: period.asm(5):
error: period.asm(5):
syntax error, unexpected .
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: period.asm(5):
error: period.asm(5):
syntax error
error: Assembly aborted (1 error)!

View File

@@ -1,5 +1,5 @@
ERROR: pops-restore-no-section.asm(9):
error: pops-restore-no-section.asm(9):
Label "DisallowedContent" created outside of a SECTION
ERROR: pops-restore-no-section.asm(10):
error: pops-restore-no-section.asm(10):
Cannot output data outside of a SECTION
error: Assembly aborted (2 errors)!

View File

@@ -1,7 +1,7 @@
ERROR: purge-ref.asm(4):
error: purge-ref.asm(4):
Symbol "ref" is referenced and thus cannot be purged
ERROR: purge-ref.asm(11):
error: purge-ref.asm(11):
Symbol "NotOK" is referenced and thus cannot be purged
ERROR: purge-ref.asm(15):
error: purge-ref.asm(15):
Symbol "EvenLessOK" is referenced and thus cannot be purged
error: Assembly aborted (3 errors)!

View File

@@ -1,3 +1,3 @@
ERROR: purge-refs.asm(6):
error: purge-refs.asm(6):
Symbol "Floating" is referenced and thus cannot be purged
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: purge.asm(9):
error: purge.asm(9):
Symbol "Referenced" is referenced and thus cannot be purged
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: pushs.asm(5):
error: pushs.asm(5):
Cannot output data outside of a SECTION
error: Assembly aborted (1 error)!

View File

@@ -1,9 +1,9 @@
ERROR: raw-macro-args.asm(26):
error: raw-macro-args.asm(26):
Unterminated string
ERROR: raw-macro-args.asm(26) -> raw-macro-args.asm::printargs(2) -> raw-macro-args.asm::printargs::REPT~1(3):
error: raw-macro-args.asm(26) -> raw-macro-args.asm::printargs(2) -> raw-macro-args.asm::printargs::REPT~1(3):
Unterminated string
ERROR: raw-macro-args.asm(37):
error: raw-macro-args.asm(37):
Unterminated string
ERROR: raw-macro-args.asm(38):
error: raw-macro-args.asm(38):
Unterminated string
error: Assembly aborted (4 errors)!

View File

@@ -1,3 +1,3 @@
ERROR: redef-equ.asm(23):
error: redef-equ.asm(23):
'N' already defined as non-EQU at redef-equ.asm(22)
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: redef-equs.asm(23):
error: redef-equs.asm(23):
'N' already defined as non-EQUS at redef-equs.asm(22)
error: Assembly aborted (1 error)!

View File

@@ -1,5 +1,5 @@
ERROR: ref-override-bad.asm(8):
error: ref-override-bad.asm(8):
'X' already referenced at ref-override-bad.asm(7)
ERROR: ref-override-bad.asm(13):
error: ref-override-bad.asm(13):
'Y' already referenced at ref-override-bad.asm(10)
error: Assembly aborted (2 errors)!

View File

@@ -1,5 +1,5 @@
ERROR: reference-undefined-equs.asm(4):
error: reference-undefined-equs.asm(4):
's1' already referenced at reference-undefined-equs.asm(2)
ERROR: reference-undefined-equs.asm(5):
error: reference-undefined-equs.asm(5):
's2' already referenced at reference-undefined-equs.asm(2)
error: Assembly aborted (2 errors)!

View File

@@ -2,6 +2,6 @@ warning: rept-shift.asm(15) -> rept-shift.asm::m(10): [-Wmacro-shift]
Cannot shift macro arguments past their end
warning: rept-shift.asm(15) -> rept-shift.asm::m(11): [-Wmacro-shift]
Cannot shift macro arguments past their end
ERROR: rept-shift.asm(15) -> rept-shift.asm::m(12):
error: rept-shift.asm(15) -> rept-shift.asm::m(12):
Macro argument '\1' not defined
error: Assembly aborted (1 error)!

View File

@@ -1,11 +1,11 @@
ERROR: section-sizeof-startof.asm(5):
error: section-sizeof-startof.asm(5):
Expected constant expression: Section "sect"'s size is not known
ERROR: section-sizeof-startof.asm(21):
error: section-sizeof-startof.asm(21):
Expected constant expression: Section "sect2"'s bank is not known
ERROR: section-sizeof-startof.asm(22):
error: section-sizeof-startof.asm(22):
Expected constant expression: Section "sect2"'s size is not known
ERROR: section-sizeof-startof.asm(23):
error: section-sizeof-startof.asm(23):
Expected constant expression: Section "sect2"'s start is not known
ERROR: section-sizeof-startof.asm(30):
error: section-sizeof-startof.asm(30):
Expected constant expression: Section "sect3"'s size is not known
error: Assembly aborted (5 errors)!

View File

@@ -1,4 +1,4 @@
ERROR: section-union.asm(37):
error: section-union.asm(37):
Section already declared as union section
FATAL: section-union.asm(37):
Cannot create section "test" (1 error)

View File

@@ -1,5 +1,5 @@
ERROR: shift-outside-macro.asm(1):
error: shift-outside-macro.asm(1):
Cannot shift macro arguments outside of a macro
ERROR: shift-outside-macro.asm(2):
error: shift-outside-macro.asm(2):
Cannot shift macro arguments outside of a macro
error: Assembly aborted (2 errors)!

View File

@@ -1,11 +1,11 @@
ERROR: strfmt.asm(14):
error: strfmt.asm(14):
Formatting number as type 's'
ERROR: strfmt.asm(14):
error: strfmt.asm(14):
STRFMT: 1 unformatted argument(s)
ERROR: strfmt.asm(22):
error: strfmt.asm(22):
STRFMT: Illegal '%' at end of format string
ERROR: strfmt.asm(24):
error: strfmt.asm(24):
STRFMT: Invalid format spec for argument 1
ERROR: strfmt.asm(26):
error: strfmt.asm(26):
STRFMT: Not enough arguments for format spec, got: 1, need: 3
error: Assembly aborted (5 errors)!

View File

@@ -1,3 +1,3 @@
ERROR: string-formatting.asm(10):
error: string-formatting.asm(10):
Formatting string with prefix flag '#'
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: sym-collision.asm(26):
error: sym-collision.asm(26):
Interpolated symbol "dork" does not exist
error: Assembly aborted (1 error)!

View File

@@ -1,9 +1,9 @@
ERROR: sym-scope.asm(4):
error: sym-scope.asm(4):
Local label '.tooSoon' in main scope
ERROR: sym-scope.asm(5):
error: sym-scope.asm(5):
Local label 'Nice.try' in main scope
ERROR: sym-scope.asm(17):
error: sym-scope.asm(17):
Not currently in the scope of 'Parentheses'
ERROR: sym-scope.asm(21):
error: sym-scope.asm(21):
Not currently in the scope of 'Parent'
error: Assembly aborted (4 errors)!

View File

@@ -1,3 +1,3 @@
ERROR: symbol-invalid-macro-arg.asm(1):
error: symbol-invalid-macro-arg.asm(1):
Invalid macro argument '\0'
error: Assembly aborted (1 error)!

View File

@@ -1,7 +1,7 @@
ERROR: symbol-override.asm(6):
error: symbol-override.asm(6):
'W' already defined as constant at symbol-override.asm(5)
ERROR: symbol-override.asm(10):
error: symbol-override.asm(10):
'X' already defined as constant at symbol-override.asm(9)
ERROR: symbol-override.asm(14):
error: symbol-override.asm(14):
'Y' already defined as label at symbol-override.asm(13)
error: Assembly aborted (3 errors)!

View File

@@ -1,13 +1,13 @@
ERROR: syntax-error-after-syntax-error.asm(6):
error: syntax-error-after-syntax-error.asm(6):
syntax error, unexpected newline
ERROR: syntax-error-after-syntax-error.asm(7):
error: syntax-error-after-syntax-error.asm(7):
syntax error, unexpected newline
To invoke `mac` as a macro it must be indented
ERROR: syntax-error-after-syntax-error.asm(8):
error: syntax-error-after-syntax-error.asm(8):
syntax error, unexpected number
To invoke `mac` as a macro it must be indented
ERROR: syntax-error-after-syntax-error.asm(9):
error: syntax-error-after-syntax-error.asm(9):
'mac' already defined at syntax-error-after-syntax-error.asm(1)
ERROR: syntax-error-after-syntax-error.asm(10):
error: syntax-error-after-syntax-error.asm(10):
'mac' already defined at syntax-error-after-syntax-error.asm(1)
error: Assembly aborted (5 errors)!

View File

@@ -1,13 +1,13 @@
ERROR: syntax-error-after-syntax-error.asm(6):
error: syntax-error-after-syntax-error.asm(6):
syntax error
ERROR: syntax-error-after-syntax-error.asm(7):
error: syntax-error-after-syntax-error.asm(7):
syntax error
To invoke `mac` as a macro it must be indented
ERROR: syntax-error-after-syntax-error.asm(8):
error: syntax-error-after-syntax-error.asm(8):
syntax error
To invoke `mac` as a macro it must be indented
ERROR: syntax-error-after-syntax-error.asm(9):
error: syntax-error-after-syntax-error.asm(9):
'mac' already defined at syntax-error-after-syntax-error.asm(1)
ERROR: syntax-error-after-syntax-error.asm(10):
error: syntax-error-after-syntax-error.asm(10):
'mac' already defined at syntax-error-after-syntax-error.asm(1)
error: Assembly aborted (5 errors)!

View File

@@ -1,3 +1,3 @@
ERROR: syntax-error-eof-newline.asm(5) -> syntax-error-eof-newline.inc(1):
error: syntax-error-eof-newline.asm(5) -> syntax-error-eof-newline.inc(1):
syntax error, unexpected newline
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: syntax-error-eof-newline.asm(5) -> syntax-error-eof-newline.inc(1):
error: syntax-error-eof-newline.asm(5) -> syntax-error-eof-newline.inc(1):
syntax error
error: Assembly aborted (1 error)!

View File

@@ -1,5 +1,5 @@
ERROR: syntax-error-lexer-mode.asm(7):
error: syntax-error-lexer-mode.asm(7):
syntax error, unexpected af
ERROR: syntax-error-lexer-mode.asm(11):
error: syntax-error-lexer-mode.asm(11):
syntax error, unexpected af, expecting identifier
error: Assembly aborted (2 errors)!

View File

@@ -1,3 +1,3 @@
ERROR: syntax-error.asm(2):
error: syntax-error.asm(2):
syntax error, unexpected a
error: Assembly aborted (1 error)!

View File

@@ -1,3 +1,3 @@
ERROR: syntax-error.asm(2):
error: syntax-error.asm(2):
syntax error
error: Assembly aborted (1 error)!

View File

@@ -22,7 +22,7 @@ while expanding symbol "warn_unique"
warning: unique-id.asm(14) -> unique-id.asm::m(8): [-Wuser]
_u4!
while expanding symbol "warn_unique"
ERROR: unique-id.asm(15):
error: unique-id.asm(15):
Macro argument '\@' not defined
while expanding symbol "warn_unique"
warning: unique-id.asm(15): [-Wuser]

Some files were not shown because too many files have changed in this diff Show More