Commit 0246d49e by Matt Austern Committed by Matt Austern

decl.c (walk_vtables_r): Fixed typo that caused result to never get a nonzero value.

	* cp/decl.c (walk_vtables_r): Fixed typo that caused result to
	never get a nonzero value.

From-SVN: r57741
parent 200bcf7e
2002-10-02 Matt Austern <austern@apple.com>
* cp/decl.c (walk_vtables_r): Fixed typo that caused result to
never get a nonzero value.
Wed Oct 2 17:01:36 CEST 2002 Jan Hubicka <jh@suse.cz>
* i386.c (print_operand_address): Use RIP addressing for offsetted
......
......@@ -1793,7 +1793,7 @@ walk_vtables_r (namespace, data)
int result = 0;
for (; decl ; decl = TREE_CHAIN (decl))
result != (*f) (&decl, d);
result |= (*f) (&decl, d);
return result;
}
......
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