Changes in src/main.cc [7215000:74330e7]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
r7215000 r74330e7 443 443 444 444 445 static const char optstring[] = ":c:ghlLmNnp dP:S:twW:D:";445 static const char optstring[] = ":c:ghlLmNnpP:S:twW:D:"; 446 446 447 447 enum { PreludeDir = 128 }; … … 456 456 { "no-prelude", no_argument, nullptr, 'n' }, 457 457 { "prototypes", no_argument, nullptr, 'p' }, 458 { "deterministic-out", no_argument, nullptr, 'd' },459 458 { "print", required_argument, nullptr, 'P' }, 460 459 { "prelude-dir", required_argument, nullptr, PreludeDir }, … … 477 476 "do not read prelude", // -n 478 477 "generate prototypes for prelude functions", // -p 479 "don't print output that isn't deterministic", // -d480 478 "print", // -P 481 479 "<directory> prelude directory for debug/nodebug", // no flag … … 582 580 genproto = true; 583 581 break; 584 case 'd': // don't print non-deterministic output585 deterministic_output = true;586 break;587 582 case 'P': // print options 588 583 for ( int i = 0;; i += 1 ) {
Note: See TracChangeset
for help on using the changeset viewer.