diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/bad_fallthrough.s | 10 | ||||
| -rw-r--r-- | tests/fallthrough.s | 6 |
2 files changed, 8 insertions, 8 deletions
diff --git a/tests/bad_fallthrough.s b/tests/bad_fallthrough.s index ac17ade..80c35c3 100644 --- a/tests/bad_fallthrough.s +++ b/tests/bad_fallthrough.s @@ -8,20 +8,20 @@ .proc foo lda #0 - .fallthrough bar + __fallthrough__ bar .endproc -.fallthrough bar -.fallthrough other +__fallthrough__ bar +__fallthrough__ other lda #0 .proc bar lda #0 - .fallthrough other + __fallthrough__ other .endproc .proc other rts .endproc -.fallthrough other +__fallthrough__ other diff --git a/tests/fallthrough.s b/tests/fallthrough.s index 2340ee8..6e95b5e 100644 --- a/tests/fallthrough.s +++ b/tests/fallthrough.s @@ -8,14 +8,14 @@ .proc foo lda #0 - .fallthrough bar + __fallthrough__ bar .endproc -.fallthrough bar +__fallthrough__ bar .proc bar lda #0 - .fallthrough other + __fallthrough__ other .endproc .proc other |
