Commit 8ef66241 authored by nathan's avatar nathan
Browse files

* config/fp-bit.c (abort): Add noreturn attribute.

	* config/avr/avr.c (avr_naked_function_p): Use gcc_assert and
	gcc_unreachable as appropriate.
	(ptrreg_to_str, cond_string, avr_normalize_condition): Likewise.
	* config/avr/avr.h (ASM_OUTPUT_REG_PUSH,
	ASM_OUTPUT_REG_POP): Likewise.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98854 138bc75d-0d04-0410-961f-82ee72b054a4
parent 2c0d0b56
2005-04-27 Nathan Sidwell <nathan@codesourcery.com>
* config/fp-bit.c (abort): Add noreturn attribute.
* config/avr/avr.c (avr_naked_function_p): Use gcc_assert and
gcc_unreachable as appropriate.
(ptrreg_to_str, cond_string, avr_normalize_condition): Likewise.
* config/avr/avr.h (ASM_OUTPUT_REG_PUSH,
ASM_OUTPUT_REG_POP): Likewise.
2005-04-27 Paolo Bonzini <bonzini@gnu.org> 2005-04-27 Paolo Bonzini <bonzini@gnu.org>
   
* tree-complex.c (expand_vector_operations_1): Do not build * tree-complex.c (expand_vector_operations_1): Do not build
......
...@@ -380,8 +380,7 @@ avr_naked_function_p (tree func) ...@@ -380,8 +380,7 @@ avr_naked_function_p (tree func)
{ {
tree a; tree a;
if (TREE_CODE (func) != FUNCTION_DECL) gcc_assert (TREE_CODE (func) == FUNCTION_DECL);
abort ();
a = lookup_attribute ("naked", DECL_ATTRIBUTES (func)); a = lookup_attribute ("naked", DECL_ATTRIBUTES (func));
return a != NULL_TREE; return a != NULL_TREE;
...@@ -1030,7 +1029,7 @@ ptrreg_to_str (int regno) ...@@ -1030,7 +1029,7 @@ ptrreg_to_str (int regno)
case REG_Y: return "Y"; case REG_Y: return "Y";
case REG_Z: return "Z"; case REG_Z: return "Z";
default: default:
abort (); gcc_unreachable ();
} }
return NULL; return NULL;
} }
...@@ -1062,7 +1061,7 @@ cond_string (enum rtx_code code) ...@@ -1062,7 +1061,7 @@ cond_string (enum rtx_code code)
case LTU: case LTU:
return "lo"; return "lo";
default: default:
abort (); gcc_unreachable ();
} }
} }
...@@ -5534,7 +5533,7 @@ avr_normalize_condition (RTX_CODE condition) ...@@ -5534,7 +5533,7 @@ avr_normalize_condition (RTX_CODE condition)
case LEU: case LEU:
return LTU; return LTU;
default: default:
abort (); gcc_unreachable ();
} }
} }
......
...@@ -668,15 +668,13 @@ sprintf (STRING, "*.%s%lu", PREFIX, (unsigned long)(NUM)) ...@@ -668,15 +668,13 @@ sprintf (STRING, "*.%s%lu", PREFIX, (unsigned long)(NUM))
#define ASM_OUTPUT_REG_PUSH(STREAM, REGNO) \ #define ASM_OUTPUT_REG_PUSH(STREAM, REGNO) \
{ \ { \
if (REGNO > 31) \ gcc_assert (REGNO < 32); \
abort (); \
fprintf (STREAM, "\tpush\tr%d", REGNO); \ fprintf (STREAM, "\tpush\tr%d", REGNO); \
} }
#define ASM_OUTPUT_REG_POP(STREAM, REGNO) \ #define ASM_OUTPUT_REG_POP(STREAM, REGNO) \
{ \ { \
if (REGNO > 31) \ gcc_assert (REGNO < 32); \
abort (); \
fprintf (STREAM, "\tpop\tr%d", REGNO); \ fprintf (STREAM, "\tpop\tr%d", REGNO); \
} }
......
...@@ -81,7 +81,7 @@ Boston, MA 02111-1307, USA. */ ...@@ -81,7 +81,7 @@ Boston, MA 02111-1307, USA. */
#endif #endif
#ifdef EXTENDED_FLOAT_STUBS #ifdef EXTENDED_FLOAT_STUBS
extern void abort (void); extern __attribute__ ((__noreturn__)) void abort (void);
void __extendsfxf2 (void) { abort(); } void __extendsfxf2 (void) { abort(); }
void __extenddfxf2 (void) { abort(); } void __extenddfxf2 (void) { abort(); }
void __truncxfdf2 (void) { abort(); } void __truncxfdf2 (void) { abort(); }
......
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