Commit 25a533a0 by Toshiyasu Morita Committed by Kazu Hirata

* config/h8300/h8300.h (OPTIMIZATION_OPTIONS): New.

From-SVN: r58728
parent dcffbade
2002-11-01 Toshiyasu Morita <toshiyasu.morita@hsa.hitachi.com>
* config/h8300/h8300.h (OPTIMIZATION_OPTIONS): New.
2002-11-01 Steve Ellcey <sje@cup.hp.com>
* config/ia64/ia64.h (MASK_INLINE_DIV_LAT): Remove.
......
......@@ -66,6 +66,16 @@ extern const char * const *h8_reg_names;
#define LIB_SPEC "%{mrelax:-relax} %{g:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}"
#define OPTIMIZATION_OPTIONS(LEVEL, SIZE) \
do \
{ \
/* Basic block reordering is only beneficial on targets with cache \
and/or variable-cycle branches where (cycle count taken != \
cycle count not taken). */ \
flag_reorder_blocks = 0; \
} \
while (0)
/* Print subsidiary information on the compiler version in use. */
#define TARGET_VERSION fprintf (stderr, " (Hitachi H8/300)");
......
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