From: Marek Polacek Date: Mon, 27 Jul 2015 19:36:40 +0000 (+0000) Subject: * ipa-devirt.c (types_same_for_odr): Fix typo. X-Git-Tag: upstream/12.2.0~53282 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=28ee8b98ea8208dff1b1b4b54ae966d0666aec70;p=platform%2Fupstream%2Fgcc.git * ipa-devirt.c (types_same_for_odr): Fix typo. From-SVN: r226266 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c8a2600..4ec512f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2015-07-27 Marek Polacek + + * ipa-devirt.c (types_same_for_odr): Fix typo. + 2015-07-27 Jason Merrill PR debug/66468 diff --git a/gcc/ipa-devirt.c b/gcc/ipa-devirt.c index b7afc3b..0a92768 100644 --- a/gcc/ipa-devirt.c +++ b/gcc/ipa-devirt.c @@ -550,7 +550,7 @@ types_same_for_odr (const_tree type1, const_tree type2, bool strict) return false; if (TREE_CODE (type1) == RECORD_TYPE && (TYPE_BINFO (type1) == NULL_TREE) - != (TYPE_BINFO (type1) == NULL_TREE)) + != (TYPE_BINFO (type2) == NULL_TREE)) return false; if (TREE_CODE (type1) == RECORD_TYPE && TYPE_BINFO (type1) && (BINFO_VTABLE (TYPE_BINFO (type1)) == NULL_TREE)