Commit 5e14ae7e by Neil Booth Committed by Neil Booth

* opts.c (common_handle_options): Negate sense of -falign- switches.

From-SVN: r68939
parent 69ef29fd
2003-07-04 Neil Booth <neil@daikokuya.co.uk>
* opts.c (common_handle_options): Negate sense of -falign- switches.
2003-07-04 H.J. Lu <hongjiu.lu@intel.com>
* Makefile.in: Replace PWD with PWD_COMMAND.
......
......@@ -789,22 +789,22 @@ common_handle_option (size_t scode, const char *arg,
case OPT_falign_functions:
case OPT_falign_functions_:
align_functions = value;
align_functions = !value;
break;
case OPT_falign_jumps:
case OPT_falign_jumps_:
align_jumps = value;
align_jumps = !value;
break;
case OPT_falign_labels:
case OPT_falign_labels_:
align_labels = value;
align_labels = !value;
break;
case OPT_falign_loops:
case OPT_falign_loops_:
align_loops = value;
align_loops = !value;
break;
case OPT_fargument_alias:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment