scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 38c7097175035acfa9408b3826c2c8306e20349a
parent 39d95c720cdc1e9af291f81689208fcf599a023d
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon,  1 Nov 2021 17:51:32 +0100

tests/cc: Fix 0176-macro

Diffstat:
Mtests/cc/execute/0176-macro.c | 2+-
Mtests/cc/execute/scc-tests.lst | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/cc/execute/0176-macro.c b/tests/cc/execute/0176-macro.c @@ -11,7 +11,7 @@ main() { int (*fun)(int,int) = func; - return (*func)(1, 2); + return (*func)(2, 1); } int diff --git a/tests/cc/execute/scc-tests.lst b/tests/cc/execute/scc-tests.lst @@ -166,7 +166,7 @@ 0173-macro.c 0174-decay.c 0175-defined.c -0176-macro.c [TODO] +0176-macro.c 0177-literal.c [TODO] 0178-include.c [TODO] 0179-sizeof.c [TODO]