diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2003-07-04 21:47:22 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2003-07-04 21:47:22 +0000 |
commit | 5e14ae7e269c0ae1206b62237f7b6cbdd68f6fec (patch) | |
tree | 27d9fe4ccba3bb15fb77d936eee3cf7e827d0766 /gcc/opts.c | |
parent | 69ef29fdf6e21be0729464bbaebff7dac006fc27 (diff) | |
download | gcc-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.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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: |