From 72890847c4352fd666d3d839ebaf8f847e7ceae4 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Fri, 13 Jun 2008 10:14:35 +0000 Subject: [PATCH] fixed some warnings [r20084] --- ir/be/arm/bearch_arm.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ir/be/arm/bearch_arm.c b/ir/be/arm/bearch_arm.c index bd7464979..5e60e8e73 100644 --- a/ir/be/arm/bearch_arm.c +++ b/ir/be/arm/bearch_arm.c @@ -223,10 +223,13 @@ static arch_irn_flags_t arm_get_flags(const ir_node *irn) static ir_entity *arm_get_frame_entity(const ir_node *irn) { /* we do NOT transform be_Spill or be_Reload nodes, so we never have frame access using ARM nodes. */ + (void) irn; return NULL; } static void arm_set_frame_entity(ir_node *irn, ir_entity *ent) { + (void) irn; + (void) ent; panic("arm_set_frame_entity() called. This should not happen."); } -- 2.20.1