OSDN Git Service

* config/cris/cris.h (OPTIMIZATION_OPTIONS): Don't unset
authorhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 4 Dec 2001 18:42:24 +0000 (18:42 +0000)
committerhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 4 Dec 2001 18:42:24 +0000 (18:42 +0000)
flag_strict_aliasing.  Use separate assignment statements.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47618 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 8d4e553..81f909e 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 3cfb106..a31a93f 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)