Commit 57f4dee3 authored by neil's avatar neil
Browse files

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

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68939 138bc75d-0d04-0410-961f-82ee72b054a4
parent 80c85eae
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