| 179 | } |
| 180 | |
| 181 | static void PrintConstants(const Proto* f) |
| 182 | { |
| 183 | int i,n=f->sizek; |
| 184 | printf("constants (%d) for %p:\n",n,VOID(f)); |
| 185 | for (i=0; i<n; i++) |
| 186 | { |
| 187 | printf("\t%d\t",i+1); |
| 188 | PrintConstant(f,i); |
| 189 | printf("\n"); |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | static void PrintLocals(const Proto* f) |
| 194 | { |
no test coverage detected