* c-common.c (lang_get_alias_set): Fix typo.

From-SVN: r34500
This commit is contained in:
Mark Mitchell 2000-06-12 19:14:08 +00:00 committed by Mark Mitchell
parent 61f286b64c
commit f6f8291af0
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2000-06-12 Mark Mitchell <mark@codesourcery.com>
* c-common.c (lang_get_alias_set): Fix typo.
2000-06-12 Richard Earnshaw <rearnsha@arm.com>
* flow.c (mark_used_regs): Revert last change.

View File

@ -3340,7 +3340,7 @@ lang_get_alias_set (t)
}
/* It's not yet safe to use alias sets for classes in C++ because
the TYPE_FIELDs list for a class doesn't mention base classes. */
else if (c_language == clk_cplusplus && AGGREGATE_TYPE_P (t));
else if (c_language == clk_cplusplus && AGGREGATE_TYPE_P (t))
return 0;
return -1;