Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make all command-line options documented in all related files #53826

Merged
merged 11 commits into from
Apr 4, 2024
Prev Previous commit
Next Next commit
fix dups
  • Loading branch information
prbzrg committed Mar 27, 2024
commit ccea31426e1fcc69a9001e2950065aa668cc1ce1
4 changes: 1 addition & 3 deletions src/jloptions.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,12 +180,10 @@ static const char opts[] =
" --inline={yes*|no} Control whether inlining is permitted, including overriding @inline declarations\n"
" --check-bounds={yes|no|auto*}\n"
" Emit bounds checks always, never, or respect @inbounds declarations ($)\n"
" --math-mode={ieee|user|fast}\n"
" Disallow or enable unsafe floating point optimizations (overrides @fastmath declaration)\n"
" --math-mode={ieee|user*} Always follow `ieee` floating point semantics or respect `@fastmath` declarations\n\n"
#ifdef USE_POLLY
" --polly={yes*|no} Enable or disable the polyhedral optimizer Polly (overrides @polly declaration)\n"
#endif
" --math-mode={ieee|user*} Always follow `ieee` floating point semantics or respect `@fastmath` declarations\n\n"

// instrumentation options
" --code-coverage[={none*|user|all}]\n"
Expand Down