* opts.c (common_handle_options): Negate sense of -falign- switches.
authorNeil Booth <neil@daikokuya.co.uk>
Fri, 4 Jul 2003 21:47:22 +0000 (21:47 +0000)
committerNeil Booth <neil@gcc.gnu.org>
Fri, 4 Jul 2003 21:47:22 +0000 (21:47 +0000)
From-SVN: r68939

gcc/ChangeLog
gcc/opts.c

index 6f383ae..a4c7909 100644 (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>
 
        * Makefile.in: Replace PWD with PWD_COMMAND.
index 3f3cc13..626dc5a 100644 (file)
@@ -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: