mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-30 18:25:35 +08:00
cris.h (OPTIMIZATION_OPTIONS): Don't unset flag_strict_aliasing.
* config/cris/cris.h (OPTIMIZATION_OPTIONS): Don't unset flag_strict_aliasing. Use separate assignment statements. From-SVN: r47618
This commit is contained in:
parent
a078a58956
commit
ff52499130
@ -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.
|
||||
|
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user