From: Richard Kenner Date: Mon, 1 Nov 1993 23:35:01 +0000 (-0500) Subject: (bdn/bdz): Fix typo in checking for when we need to split. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=af87a13efc80020acb82e9419b9815092fa194f3;p=gcc.git (bdn/bdz): Fix typo in checking for when we need to split. From-SVN: r5967 --- diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 4b57b6c9c5f..142b135fef1 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -5410,7 +5410,7 @@ "" "* { - if (which_alternative == 1) + if (which_alternative != 0) return \"#\"; else if (get_attr_length (insn) == 8) return \"{bdn|bdnz} %l2\"; @@ -5433,7 +5433,7 @@ "find_reg_note (insn, REG_NONNEG, 0)" "* { - if (which_alternative == 1) + if (which_alternative != 0) return \"#\"; else if (get_attr_length (insn) == 8) return \"{bdn|bdnz} %l2\"; @@ -5455,7 +5455,7 @@ "" "* { - if (which_alternative == 1) + if (which_alternative != 0) return \"#\"; else if (get_attr_length (insn) == 8) return \"bdz %l2\";