aboutsummaryrefslogtreecommitdiff
path: root/gcc/opts.c
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.co.uk>2003-07-04 21:47:22 +0000
committerNeil Booth <neil@gcc.gnu.org>2003-07-04 21:47:22 +0000
commit5e14ae7e269c0ae1206b62237f7b6cbdd68f6fec (patch)
tree27d9fe4ccba3bb15fb77d936eee3cf7e827d0766 /gcc/opts.c
parent69ef29fdf6e21be0729464bbaebff7dac006fc27 (diff)
downloadgcc-5e14ae7e269c0ae1206b62237f7b6cbdd68f6fec.zip
gcc-5e14ae7e269c0ae1206b62237f7b6cbdd68f6fec.tar.gz
gcc-5e14ae7e269c0ae1206b62237f7b6cbdd68f6fec.tar.bz2
* opts.c (common_handle_options): Negate sense of -falign- switches.
From-SVN: r68939
Diffstat (limited to 'gcc/opts.c')
-rw-r--r--gcc/opts.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/opts.c b/gcc/opts.c
index 3f3cc13..626dc5a 100644
--- a/gcc/opts.c
+++ b/gcc/opts.c
@@ -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: