]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
cris.h (OPTIMIZATION_OPTIONS): Don't unset flag_strict_aliasing.
authorHans-Peter Nilsson <hp@axis.com>
Tue, 4 Dec 2001 18:42:24 +0000 (18:42 +0000)
committerHans-Peter Nilsson <hp@gcc.gnu.org>
Tue, 4 Dec 2001 18:42:24 +0000 (18:42 +0000)
* config/cris/cris.h (OPTIMIZATION_OPTIONS): Don't unset
flag_strict_aliasing.  Use separate assignment statements.

From-SVN: r47618

gcc/ChangeLog
gcc/config/cris/cris.h

index 8d4e5530b35b7273500ae484ce693e44be3d5a75..81f909ed3a9d2bc2984a3ee41ea2831b915a4686 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-04  Hans-Peter Nilsson  <hp@axis.com>
+
+       * config/cris/cris.h (OPTIMIZATION_OPTIONS): Don't unset
+       flag_strict_aliasing.  Use separate assignment statements.
+
 2001-12-04  Zack Weinberg  <zack@codesourcery.com>
 
        * build-make, cross-make: Delete file.
index 3cfb10657cb1ec93b9eb035edba99f5051f4baf0..a31a93f0e84d6e2ef7c5e8dd22c0f30d59fc8514 100644 (file)
@@ -454,10 +454,9 @@ extern int target_flags;
     {                                          \
       if ((OPTIMIZE) >= 2 || (SIZE))           \
        {                                       \
-         flag_force_addr =                     \
-           flag_omit_frame_pointer = 1;        \
+         flag_force_addr = 1;                  \
+         flag_omit_frame_pointer = 1;          \
        }                                       \
-      flag_strict_aliasing = 0;                        \
     }                                          \
   while (0)