Commit ff524991 by Hans-Peter Nilsson Committed by Hans-Peter Nilsson

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
parent a078a589
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> 2001-12-04 Zack Weinberg <zack@codesourcery.com>
* build-make, cross-make: Delete file. * build-make, cross-make: Delete file.
......
...@@ -454,10 +454,9 @@ extern int target_flags; ...@@ -454,10 +454,9 @@ extern int target_flags;
{ \ { \
if ((OPTIMIZE) >= 2 || (SIZE)) \ if ((OPTIMIZE) >= 2 || (SIZE)) \
{ \ { \
flag_force_addr = \ flag_force_addr = 1; \
flag_omit_frame_pointer = 1; \ flag_omit_frame_pointer = 1; \
} \ } \
flag_strict_aliasing = 0; \
} \ } \
while (0) while (0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment