From: Falk Hueffner Date: Sat, 1 May 2004 12:26:28 +0000 (+0200) Subject: alpha.md (builtin_insbl, [...]): Disallow 0 as first input operand. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ebade076e750e589043e25b83bb1d421143c2848;p=gcc.git alpha.md (builtin_insbl, [...]): Disallow 0 as first input operand. * config/alpha/alpha.md (builtin_insbl, builtin_inswl, builtin_insll): Disallow 0 as first input operand. From-SVN: r81387 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d442d303fd5..2b79a6c0f1e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-05-01 Falk Hueffner + + * config/alpha/alpha.md (builtin_insbl, builtin_inswl, + builtin_insll): Disallow 0 as first input operand. + 2004-05-01 Falk Hueffner * config/alpha/alpha.c (alpha_rtx_costs): Fix shiftadd costs. diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md index 64c88e32332..3d3b7313cc7 100644 --- a/gcc/config/alpha/alpha.md +++ b/gcc/config/alpha/alpha.md @@ -7185,7 +7185,7 @@ (define_expand "builtin_insbl" [(match_operand:DI 0 "register_operand" "") - (match_operand:DI 1 "reg_or_0_operand" "") + (match_operand:DI 1 "register_operand" "") (match_operand:DI 2 "reg_or_8bit_operand" "")] "" { @@ -7201,7 +7201,7 @@ (define_expand "builtin_inswl" [(match_operand:DI 0 "register_operand" "") - (match_operand:DI 1 "reg_or_0_operand" "") + (match_operand:DI 1 "register_operand" "") (match_operand:DI 2 "reg_or_8bit_operand" "")] "" { @@ -7217,7 +7217,7 @@ (define_expand "builtin_insll" [(match_operand:DI 0 "register_operand" "") - (match_operand:DI 1 "reg_or_0_operand" "") + (match_operand:DI 1 "register_operand" "") (match_operand:DI 2 "reg_or_8bit_operand" "")] "" {