1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-27 04:54:54 +00:00
cc65/test/ref
Jesse Rosenstock 18246278c5 switch2.c: Remove use of REFCC and UNSIGNED_CHARS
Explicitly use `signed char` or `unsigned char`, rather than
```

signed char k;
char k;

signed char k;
char k;
```
This should have resulted in the same thing; however, note that
`REFCC` was never defined, and `common.h` was not included, so
the old code in fact tested `char` then `unsigned char`,
which are the same.

The only difference is that a switch using plain `char` is not
tested, but since this is the same as either `signed char` or
`unsigned char`, the lack of test coverage seems relatively safe.
2020-06-25 13:18:08 +02:00
..
8q.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
array.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
cc65070303.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
cc65080227.c fixed up the rest of the tests, added rudimentary makefile(s) 2014-11-22 18:28:05 +01:00
cc65080328.c fixed up the rest of the tests, added rudimentary makefile(s) 2014-11-22 18:28:05 +01:00
cc65090111.c fixed up the rest of the tests, added rudimentary makefile(s) 2014-11-22 18:28:05 +01:00
cc65090124.c Changed most "backticks" (grave accents) into apostrophes. 2019-01-05 14:57:12 -05:00
cc65090726.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
cc65090910.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
cc65090913.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
cc65091007.c fixed up the rest of the tests, added rudimentary makefile(s) 2014-11-22 18:28:05 +01:00
cc65091022.c Changed most "backticks" (grave accents) into apostrophes. 2019-01-05 14:57:12 -05:00
cc65101102.c Changed most "backticks" (grave accents) into apostrophes. 2019-01-05 14:57:12 -05:00
cc65101209.c added tests as prepared by oliver 2014-09-25 21:38:34 +02:00
cc65101216.c added tests as prepared by oliver 2014-09-25 21:38:34 +02:00
cc65110210.c Changed most "backticks" (grave accents) into apostrophes. 2019-01-05 14:57:12 -05:00
cc65110211.c fixed up the rest of the tests, added rudimentary makefile(s) 2014-11-22 18:28:05 +01:00
cf.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
cf.in added linefeeds 2014-11-24 20:35:35 +01:00
charconst.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
charset.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
common.h fixed up the rest of the tests, added rudimentary makefile(s) 2014-11-22 18:28:05 +01:00
cvt.c fixed up the rest of the tests, added rudimentary makefile(s) 2014-11-22 18:28:05 +01:00
dijkstra.c added tests as prepared by oliver 2014-09-25 21:38:34 +02:00
divmod.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
goto.c Added testcase for between-blocks gotos. 2018-10-02 18:49:53 +02:00
hanoi.c Replaced plain 0's and 1's in exit statements with EXIT_SUCCESS or EXIT_FAILURE 2019-11-19 14:08:00 +01:00
ifexpr.c added tests as prepared by oliver 2014-09-25 21:38:34 +02:00
incr.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
init.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
macro.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
Makefile switch2.c: Remove use of REFCC and UNSIGNED_CHARS 2020-06-25 13:18:08 +02:00
mandel.c added tests as prepared by oliver 2014-09-25 21:38:34 +02:00
minimal.c fixed up the rest of the tests, added rudimentary makefile(s) 2014-11-22 18:28:05 +01:00
otccex.c Allowed old-style (K and R) function declarations to be fastcall. 2019-07-22 09:26:23 -04:00
paranoia.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
pointer2.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
return.c added tests as prepared by oliver 2014-09-25 21:38:34 +02:00
sort.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
spill.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
stdarg.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
strptr.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
struct.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
switch2.c switch2.c: Remove use of REFCC and UNSIGNED_CHARS 2020-06-25 13:18:08 +02:00
switch.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
varargs.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
wf1.c Replaced plain 0's and 1's in exit statements with EXIT_SUCCESS or EXIT_FAILURE 2019-11-19 14:08:00 +01:00
wf1.in fixed up the rest of the tests, added rudimentary makefile(s) 2014-11-22 18:28:05 +01:00
yacc2.c remote TABs in doc/ and test/ 2019-02-12 22:50:49 +01:00
yacc.c Fixed exit code #974 2019-11-12 08:05:25 -05:00
yacc.in added linefeeds 2014-11-24 20:35:35 +01:00
yaccdbg.c added tests as prepared by oliver 2014-09-25 21:38:34 +02:00