Commit 7a22dbec by David Edelsohn Committed by David Edelsohn

genpreds.c (write_insn_extra_address_constraint): Argument `c' is operand of switch, not str[0].

	* genpreds.c (write_insn_extra_address_constraint): Argument `c'
	is operand of switch, not str[0].

From-SVN: r112225
parent 22862852
2006-03-20 David Edelsohn <edelsohn@gnu.org>
* genpreds.c (write_insn_extra_address_constraint): Argument `c'
is operand of switch, not str[0].
2006-03-20 Alan Modra <amodra@bigpond.net.au>
* config/rs6000/rs6000.c (rs6000_handle_option): Use
......
......@@ -1088,7 +1088,7 @@ write_insn_extra_address_constraint (void)
puts ("bool\n"
"insn_extra_address_constraint (enum constraint_num c)\n"
"{\n"
" switch (str[0])\n"
" switch (c)\n"
" {");
FOR_ALL_CONSTRAINTS (c)
......
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