M2-Planet/test/test1000
Sanne Wouda 09acd6253d Implement simple macro expansion
- no longer generate CONSTANT lines for #defined constants

- "#define FOO 1" turns "return FOO;" into "return 1;"

- Macros expanding into a macro is not supported:
  #define FOO 1
  #define BAR FOO
  will expand BAR to FOO, not to 1

- Expansion inside #if conditions is not supported.

- Function-like macros are not supported.
2021-01-09 17:39:48 +00:00
..
.gitignore Major relocation of tests to better structure for future additions 2020-02-28 18:27:12 -05:00
cleanup.sh Major relocation of tests to better structure for future additions 2020-02-28 18:27:12 -05:00
hello-aarch64.sh Add newline tokens to parse stream 2021-01-05 22:23:15 +00:00
hello-amd64.sh Add newline tokens to parse stream 2021-01-05 22:23:15 +00:00
hello-armv7l.sh Add newline tokens to parse stream 2021-01-05 22:23:15 +00:00
hello-knight-posix.sh Add newline tokens to parse stream 2021-01-05 22:23:15 +00:00
hello-x86.sh Add newline tokens to parse stream 2021-01-05 22:23:15 +00:00
proof.answer Implement simple macro expansion 2021-01-09 17:39:48 +00:00