add test related to bug #1853

This commit is contained in:
mrdudz 2022-09-17 14:42:18 +02:00
parent fd6d00a4dd
commit 6fc2cd9f61
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
/* #1853 - Regression on inline assembly expression evaluation */
int main(void)
{
/*
compiles with e.g. Git 2f4e2a3 to the expected
lda 1
lda 1 + 1
rts
However, with the current HEAD, it compiles to
lda 1
lda
*/
__asm__("lda 1");
__asm__("lda 1 + 1");
return 0;
}