Commit 19d33948 by Kaveh R. Ghazi Committed by Kaveh Ghazi

iris5.h (current_section_flags): Add in_unlikely_executed_text and default case.

	* config/mips/iris5.h (current_section_flags):  Add
	in_unlikely_executed_text and default case.

From-SVN: r80604
parent cf22ce3c
2004-04-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* config/mips/iris5.h (current_section_flags): Add
in_unlikely_executed_text and default case.
2004-04-11 Andreas Tobler <a.tobler@schweiz.ch>
* bb-reorder.c (fix_crossing_conditional_branches): Fix bootstrap
......
......@@ -234,13 +234,14 @@ current_section_flags (void) \
switch (in_section) \
{ \
case no_section: return 0; \
case in_unlikely_executed_text: \
case in_text: return SECTION_CODE; \
case in_data: return SECTION_WRITE; \
case in_bss: return SECTION_WRITE | SECTION_BSS; \
case in_readonly_data: return 0; \
case in_named: return get_named_section_flags (in_named_name); \
default: abort (); \
} \
abort (); \
}
/* Some assemblers have a bug that causes backslash escaped chars in .ascii
......
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