From: Richard Kenner Date: Sat, 25 Feb 1995 13:07:46 +0000 (-0500) Subject: (RTX_COSTS): Add cost of FFS. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3a942930d4450a88c97c3b51569336d73f111ab9;p=gcc.git (RTX_COSTS): Add cost of FFS. From-SVN: r9082 --- 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;