rui314 / chibicc

A small C compiler
MIT License
9.67k stars 881 forks source link

different output from gcc for c-testsuite's 00206.c #139

Open samkho opened 2 months ago

samkho commented 2 months ago

For https://github.com/c-testsuite/c-testsuite/tree/master/tests/single-exec/00206.c...

gcc outputs:

abort = 111 abort = 222 abort = 333 abort = 222 abort = 111

chibicc outputs:

abort = 111 abort = 222 abort = 333 abort = 333 abort = 333