aboutsummaryrefslogtreecommitdiff
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
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
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/opts.c8
2 files changed, 8 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 6f383ae..a4c7909 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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>
* Makefile.in: Replace PWD with PWD_COMMAND.
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: