* config/epiphany/epiphany.c (epiphany_expand_prologue):
Remove unused variable save_config.
(epiphany_compute_frame_size): Avoid signed/unsigned comparison in
assert.
From-SVN: r205388
+2013-11-26 Joern Rennecke <joern.rennecke@embecosm.com>
+
+ * config/epiphany/epiphany.c (epiphany_expand_prologue):
+ Remove unused variable save_config.
+ (epiphany_compute_frame_size): Avoid signed/unsigned comparison in
+ assert.
+
2013-11-26 James Greenhalgh <james.greenhalgh@arm.com>
* config/aarch64/arm_neon.h (vtbx1_<psu>8): Emulate behaviour
if (total_size + reg_size <= (unsigned) epiphany_stack_offset)
{
gcc_assert (first_slot < 0);
- gcc_assert (reg_size == 0 || reg_size == epiphany_stack_offset);
+ gcc_assert (reg_size == 0 || (int) reg_size == epiphany_stack_offset);
last_slot_offset = EPIPHANY_STACK_ALIGN (total_size + reg_size);
}
else
int interrupt_p;
enum epiphany_function_type fn_type;
rtx addr, mem, off, reg;
- rtx save_config;
if (!current_frame_info.initialized)
epiphany_compute_frame_size (get_frame_size ());