aboutsummaryrefslogtreecommitdiff
path: root/gcc/ipa-devirt.c
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2018-04-18 22:09:33 +0200
committerMartin Liska <marxin@gcc.gnu.org>2018-04-18 20:09:33 +0000
commit6867cd697690acf81d3eb4fe7d1e4eb085850d8d (patch)
treecceaae03ea4cb0063e82805b5d841cbf697b1ac6 /gcc/ipa-devirt.c
parentaf5975362b21c2a1268aac5b02545de482a2cc7c (diff)
downloadgcc-6867cd697690acf81d3eb4fe7d1e4eb085850d8d.zip
gcc-6867cd697690acf81d3eb4fe7d1e4eb085850d8d.tar.gz
gcc-6867cd697690acf81d3eb4fe7d1e4eb085850d8d.tar.bz2
Fix coding style and typos.
2018-04-18 Martin Liska <mliska@suse.cz> * ipa-devirt.c (odr_subtypes_equivalent_p): Fix GNU coding style. 2018-04-18 Martin Liska <mliska@suse.cz> * lto.c (lto_read_decls): Fix GNU coding style and typos. From-SVN: r259480
Diffstat (limited to 'gcc/ipa-devirt.c')
-rw-r--r--gcc/ipa-devirt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ipa-devirt.c b/gcc/ipa-devirt.c
index a0c095e..308b6e6 100644
--- a/gcc/ipa-devirt.c
+++ b/gcc/ipa-devirt.c
@@ -685,7 +685,7 @@ odr_subtypes_equivalent_p (tree t1, tree t2,
if (!types_same_for_odr (t1, t2, true))
return false;
/* Limit recursion: If subtypes are ODR types and we know
- that they are same, be happy. */
+ that they are same, be happy. */
if (!odr_type_p (t1) || !get_odr_type (t1, true)->odr_violated)
return true;
}