(fold_rtx): Fix typo in two FLOAT_STORE_FLAG_VALUE tests.

From-SVN: r1837
This commit is contained in:
Richard Kenner 1992-08-14 14:44:54 -04:00
parent f582c9d513
commit c7c955eebc
1 changed files with 2 additions and 2 deletions

View File

@ -4843,7 +4843,7 @@ fold_rtx (x, insn)
rtx true = const_true_rtx, false = const0_rtx;
#ifdef FLOAT_STORE_FLAG_VALUE
if (GET_MODE_CLASS (mode))
if (GET_MODE_CLASS (mode) == MODE_FLOAT)
{
true = immed_real_const_1 (FLOAT_STORE_FLAG_VALUE, mode);
false = CONST0_RTX (mode);
@ -4961,7 +4961,7 @@ fold_rtx (x, insn)
rtx true = const_true_rtx, false = const0_rtx;
#ifdef FLOAT_STORE_FLAG_VALUE
if (GET_MODE_CLASS (mode))
if (GET_MODE_CLASS (mode) == MODE_FLOAT)
{
true = immed_real_const_1 (FLOAT_STORE_FLAG_VALUE, mode);
false = CONST0_RTX (mode);