diff options
author | Ori Bernstein <ori@eigenstate.org> | 2012-08-01 00:43:55 -0400 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2012-08-01 00:43:55 -0400 |
commit | 08cf7754b28fc26034bd752022e47ed516686210 (patch) | |
tree | 3b17a8b9e77e55c28ad75fdd192c4162049b366b /6 | |
parent | b2fa7003bf8809ce27699c88eecce4b55618dd5f (diff) | |
download | mc-08cf7754b28fc26034bd752022e47ed516686210.tar.gz |
Minor doc updates.
Diffstat (limited to '6')
-rw-r--r-- | 6/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -33,6 +33,7 @@ static void usage(char *prog) printf("\t\t\tl: additionally log lowered pre-cfg trees\n"); printf("\t\t\tT: additionally log tree immediately\n"); printf("\t\t\tr: additionally log register allocation activity\n"); + printf("\t\t\ti: additionally log instruction selection activity\n"); printf("\t-o\tOutput to outfile\n"); printf("\t-S\tGenerate assembly instead of object code\n"); } @@ -69,7 +70,7 @@ int main(int argc, char **argv) while (optarg && *optarg) { if (*optarg == 'y') yydebug = 1; - debugopt[*optarg++ & 0x7f] = 1; + debugopt[*optarg++ & 0x7f]++; } break; case 'I': |