From cb389659f3257f911cc1347cff5943c6743fec16 Mon Sep 17 00:00:00 2001 From: John van Groningen Date: Mon, 12 Jul 2004 15:49:03 +0000 Subject: implement absR, negI and faster not for the PowerPC --- cglin.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cglin.c') diff --git a/cglin.c b/cglin.c index b293c9a..0d4224b 100644 --- a/cglin.c +++ b/cglin.c @@ -3380,7 +3380,7 @@ static void linearize_dyadic_non_commutative_data_operator (int i_instruction_co register_node (graph,reg_1); } -#ifdef I486 +#if defined (I486) || defined (G_POWER) static void linearize_monadic_data_operator (int i_instruction_code,INSTRUCTION_GRAPH graph,ADDRESS *ad_p) { INSTRUCTION_GRAPH graph_1; @@ -6107,7 +6107,7 @@ static void linearize_float_graph (register INSTRUCTION_GRAPH graph,register ADD case GFNEG: linearize_monadic_float_operator (graph,ad_p,IFNEG); break; -#ifdef I486 +#if defined (I486) || defined (G_POWER) case GFABS: linearize_monadic_float_operator (graph,ad_p,IFABS); break; @@ -7637,7 +7637,7 @@ static void linearize_graph (INSTRUCTION_GRAPH graph,ADDRESS *ad_p) case GFILL_R: linearize_fill_r_operator (graph,ad_p); return; -#ifdef I486 +#if defined (I486) || defined (G_POWER) case GNEG: linearize_monadic_data_operator (INEG,graph,ad_p); return; -- cgit v1.2.3