aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1993-11-01 18:35:01 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1993-11-01 18:35:01 -0500
commitaf87a13efc80020acb82e9419b9815092fa194f3 (patch)
treec5fb57b0c860e8d1c9717740e3339a6148d3b3f6
parent68b40e7e3dc5a404237a619b39723838ab954635 (diff)
downloadgcc-af87a13efc80020acb82e9419b9815092fa194f3.zip
gcc-af87a13efc80020acb82e9419b9815092fa194f3.tar.gz
gcc-af87a13efc80020acb82e9419b9815092fa194f3.tar.bz2
(bdn/bdz): Fix typo in checking for when we need to split.
From-SVN: r5967
-rw-r--r--gcc/config/rs6000/rs6000.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md
index 4b57b6c..142b135 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\";