Skip to content
Snippets Groups Projects
Commit 0fcd5dda authored by Neil Booth's avatar Neil Booth Committed by Neil Booth
Browse files

opts.c (common_handle_option): Correct handling of the -falign- switches that...

opts.c (common_handle_option): Correct handling of the -falign- switches that do and don't take an argument.

	* opts.c (common_handle_option): Correct handling of the
	-falign- switches that do and don't take an argument.

From-SVN: r69053
parent 52b7f433
No related branches found
No related tags found
No related merge requests found
2003-07-07 Neil Booth <neil@daikokuya.co.uk>
* opts.c (common_handle_option): Correct handling of the
-falign- switches that do and don't take an argument.
2003-07-07 Kazu Hirata <kazu@cs.umass.edu> 2003-07-07 Kazu Hirata <kazu@cs.umass.edu>
   
* config/h8300/h8300.md (pushqi1_h8300hs): Revert my patch * config/h8300/h8300.md (pushqi1_h8300hs): Revert my patch
......
...@@ -782,25 +782,37 @@ common_handle_option (size_t scode, const char *arg, ...@@ -782,25 +782,37 @@ common_handle_option (size_t scode, const char *arg,
break; break;
case OPT_falign_functions: case OPT_falign_functions:
case OPT_falign_functions_:
align_functions = !value; align_functions = !value;
break; break;
case OPT_falign_functions_:
align_functions = value;
break;
case OPT_falign_jumps: case OPT_falign_jumps:
case OPT_falign_jumps_:
align_jumps = !value; align_jumps = !value;
break; break;
case OPT_falign_jumps_:
align_jumps = value;
break;
case OPT_falign_labels: case OPT_falign_labels:
case OPT_falign_labels_:
align_labels = !value; align_labels = !value;
break; break;
case OPT_falign_labels_:
align_labels = value;
break;
case OPT_falign_loops: case OPT_falign_loops:
case OPT_falign_loops_:
align_loops = !value; align_loops = !value;
break; break;
case OPT_falign_loops_:
align_loops = value;
break;
case OPT_fargument_alias: case OPT_fargument_alias:
flag_argument_noalias = !value; flag_argument_noalias = !value;
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment