* cp/decl.c (walk_vtables_r): Fixed typo that caused result to
never get a nonzero value.
From-SVN: r57741
+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
int result = 0;
for (; decl ; decl = TREE_CHAIN (decl))
- result != (*f) (&decl, d);
+ result |= (*f) (&decl, d);
return result;
}