diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1997-02-02 06:50:51 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1997-02-02 06:50:51 -0500 |
commit | 906a2d3cefb5cdf990cf9cd038a5840556d9eebb (patch) | |
tree | ad9b93ab3a2bd6a4bd16f0baade82267f4bfa863 /gcc | |
parent | 4eb2cb10f6266de7edb1d22222976f4c9e641687 (diff) | |
download | gcc-906a2d3cefb5cdf990cf9cd038a5840556d9eebb.zip gcc-906a2d3cefb5cdf990cf9cd038a5840556d9eebb.tar.gz gcc-906a2d3cefb5cdf990cf9cd038a5840556d9eebb.tar.bz2 |
(output_scc_di): Add missing CC_STATUS_INIT.
From-SVN: r13580
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/m68k/m68k.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/config/m68k/m68k.c b/gcc/config/m68k/m68k.c index 21e16d3..6fca24b 100644 --- a/gcc/config/m68k/m68k.c +++ b/gcc/config/m68k/m68k.c @@ -919,6 +919,9 @@ output_scc_di(op, operand1, operand2, dest) rtx loperands[7]; enum rtx_code op_code = GET_CODE (op); + /* This does not produce a usefull cc. */ + CC_STATUS_INIT; + /* The m68k cmp.l instruction requires operand1 to be a reg as used below. Swap the operands and change the op if these requirements are not fulfilled. */ |