Renamed a few testcases.

This commit is contained in:
acqn
2022-09-18 22:29:41 +08:00
parent 080ec131d8
commit 5e7d9b5fe3
17 changed files with 0 additions and 0 deletions

30
test/val/bug1357-pp.c Normal file
View File

@@ -0,0 +1,30 @@
/* issue #1357 - X Macros don't work with C preprocessor */
#define OPCODES(X) \
X(PUSHNIL) \
X(PUSHTRUE) \
X(PUSHFALSE)
enum {
#define X(op) op,
OPCODES(X)
#undef X
N_OPS
};
/* cc65 -E bug1357.c -o bug1357.c.pre
should produce something like this:
enum {
PUSHNIL,
PUSHTRUE,
PUSHFALSE,
N_OPS
};
*/
int main(void)
{
return 0;
}