diff options
author | Richard Henderson <rth@cygnus.com> | 1998-08-15 13:54:22 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1998-08-15 13:54:22 -0700 |
commit | c7dec7c21635b73353c520c6369f787373c73037 (patch) | |
tree | ee67f2af42c82553fa6b0eed11185b23e2736ca3 /gcc | |
parent | 54473ca70df610235a987eac0a8966e0cbca4f81 (diff) | |
download | gcc-c7dec7c21635b73353c520c6369f787373c73037.zip gcc-c7dec7c21635b73353c520c6369f787373c73037.tar.gz gcc-c7dec7c21635b73353c520c6369f787373c73037.tar.bz2 |
* alpha.md (movsicc): Fix mode mismatch.
From-SVN: r21752
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/alpha/alpha.md | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 030e35b..0185e68 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Sat Aug 15 20:51:35 1998 Richard Henderson <rth@cygnus.com> + + * alpha.md (movsicc): Fix mode mismatch. + Sat Aug 15 20:22:33 1998 H.J. Lu (hjl@gnu.org) * config/alpha/alpha.h (ASM_OUTPUT_MI_THUNK): Handle aggregated diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md index 5ce750e..b4afc21 100644 --- a/gcc/config/alpha/alpha.md +++ b/gcc/config/alpha/alpha.md @@ -3219,7 +3219,7 @@ (define_expand "movsicc" [(set (match_operand:SI 0 "register_operand" "") - (if_then_else:DI (match_operand 1 "comparison_operator" "") + (if_then_else:SI (match_operand 1 "comparison_operator" "") (match_operand:SI 2 "reg_or_8bit_operand" "") (match_operand:SI 3 "reg_or_8bit_operand" "")))] "" |