Commit af87a13e by Richard Kenner

(bdn/bdz): Fix typo in checking for when we need to split.

From-SVN: r5967
parent 68b40e7e
...@@ -5410,7 +5410,7 @@ ...@@ -5410,7 +5410,7 @@
"" ""
"* "*
{ {
if (which_alternative == 1) if (which_alternative != 0)
return \"#\"; return \"#\";
else if (get_attr_length (insn) == 8) else if (get_attr_length (insn) == 8)
return \"{bdn|bdnz} %l2\"; return \"{bdn|bdnz} %l2\";
...@@ -5433,7 +5433,7 @@ ...@@ -5433,7 +5433,7 @@
"find_reg_note (insn, REG_NONNEG, 0)" "find_reg_note (insn, REG_NONNEG, 0)"
"* "*
{ {
if (which_alternative == 1) if (which_alternative != 0)
return \"#\"; return \"#\";
else if (get_attr_length (insn) == 8) else if (get_attr_length (insn) == 8)
return \"{bdn|bdnz} %l2\"; return \"{bdn|bdnz} %l2\";
...@@ -5455,7 +5455,7 @@ ...@@ -5455,7 +5455,7 @@
"" ""
"* "*
{ {
if (which_alternative == 1) if (which_alternative != 0)
return \"#\"; return \"#\";
else if (get_attr_length (insn) == 8) else if (get_attr_length (insn) == 8)
return \"bdz %l2\"; return \"bdz %l2\";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment