aboutsummaryrefslogtreecommitdiff
path: root/tests/tests2/82_nocode_wanted.c
Commit message (Collapse)AuthorAgeFilesLines
* updates & cleanups (tcc-doc/Changelog/TODO ...)grischka2017-02-131-112/+0
| | | | | | | | | | | | | | | - tcc-doc.texi: commandline option info update - Changelog/TODO: update - tests/tcctest.py: removed - tests/Makefile: weaktest fixed - tests/tests2: some files renamed and/or converted to unix LF - configure/Makefile: --enable-static option (no dll on win32) - win32/build-tcc.bat: msvc support - win32/tcc-win32.txt: build info update - win32/vs2015/: VS solution removed - win32/include/tcc/tcc_libm.h: #include statement fixed - tcc.c: -include <file> option help info - .gitignore: cleanup
* Fix more nocode_wanted jump problemsMichael Matz2016-12-151-0/+32
| | | | | | | In statement expression we really mustn't emit backward jumps under nocode_wanted (they will form infinte loops as no expressions are evaluated). Do-while and explicit loop with gotos weren't handled.
* nocode_wanted with while/for inside ({})seyko2016-04-051-0/+80
a test included.