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

From-SVN: r68939
This commit is contained in:
Neil Booth 2003-07-04 21:47:22 +00:00 committed by Neil Booth
parent 69ef29fdf6
commit 5e14ae7e26
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
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> 2003-07-04 H.J. Lu <hongjiu.lu@intel.com>
* Makefile.in: Replace PWD with PWD_COMMAND. * Makefile.in: Replace PWD with PWD_COMMAND.

View File

@ -789,22 +789,22 @@ common_handle_option (size_t scode, const char *arg,
case OPT_falign_functions: case OPT_falign_functions:
case OPT_falign_functions_: case OPT_falign_functions_:
align_functions = value; align_functions = !value;
break; break;
case OPT_falign_jumps: case OPT_falign_jumps:
case OPT_falign_jumps_: case OPT_falign_jumps_:
align_jumps = value; align_jumps = !value;
break; break;
case OPT_falign_labels: case OPT_falign_labels:
case OPT_falign_labels_: case OPT_falign_labels_:
align_labels = value; align_labels = !value;
break; break;
case OPT_falign_loops: case OPT_falign_loops:
case OPT_falign_loops_: case OPT_falign_loops_:
align_loops = value; align_loops = !value;
break; break;
case OPT_fargument_alias: case OPT_fargument_alias: