From: Michael Beck Date: Fri, 13 Jun 2008 10:14:35 +0000 (+0000) Subject: fixed some warnings X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=72890847c4352fd666d3d839ebaf8f847e7ceae4;p=libfirm fixed some warnings [r20084] --- 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."); }