File: TODO

package info (click to toggle)
pmccabe 2.8-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 876 kB
  • sloc: ansic: 3,084; cpp: 1,080; sh: 401; makefile: 42
file content (18 lines) | stat: -rw-r--r-- 384 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Templates probably don't work

Revise the man page to be more accurate about statement counting.

Remember to change the default -x -X for 2.8 to -X

WARNING!!!! Before upgrading to Matt's cparse.c changes I ran his
new tests with -X and only 16, 17, and 19 failed.

1. Don't skip over the #else block when the #if is always false:
#if 0
void f() {
#else
void g() {
#endif
 int a;
}