From af87a13efc80020acb82e9419b9815092fa194f3 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Mon, 1 Nov 1993 18:35:01 -0500 Subject: [PATCH] (bdn/bdz): Fix typo in checking for when we need to split. From-SVN: r5967 --- gcc/config/rs6000/rs6000.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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\"; -- 2.30.2