From 3a942930d4450a88c97c3b51569336d73f111ab9 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sat, 25 Feb 1995 08:07:46 -0500 Subject: [PATCH] (RTX_COSTS): Add cost of FFS. From-SVN: r9082 --- gcc/config/rs6000/rs6000.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h index 902d167bf10..fc48e991e57 100644 --- a/gcc/config/rs6000/rs6000.h +++ b/gcc/config/rs6000/rs6000.h @@ -1621,6 +1621,8 @@ struct rs6000_args {int words, fregno, nargs_prototype; }; case PROCESSOR_PPC620: \ return COSTS_N_INSNS (20); \ } \ + case FFS: \ + return COSTS_N_INSNS (4); \ case MEM: \ /* MEM should be slightly more expensive than (plus (reg) (const)) */ \ return 5; -- 2.30.2