diff options
author | Joseph Myers <jsm28@gcc.gnu.org> | 2001-12-16 16:23:50 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2001-12-16 16:23:50 +0000 |
commit | a83f01f0409ad496222c05be70d4cb5a1b3e132d (patch) | |
tree | e33afaec1a48dabdfffb966214f02786bf95c440 /gcc/java/class.c | |
parent | 5868edbb704f78353a0d88907914148e58c2cd7c (diff) | |
download | gcc-a83f01f0409ad496222c05be70d4cb5a1b3e132d.zip gcc-a83f01f0409ad496222c05be70d4cb5a1b3e132d.tar.gz gcc-a83f01f0409ad496222c05be70d4cb5a1b3e132d.tar.bz2 |
ChangeLog, [...]: Fix spelling errors.
* ChangeLog, Make-lang.in, class.c, expr.c, gcj.texi, java-tree.h,
jcf-parse.c, jcf-write.c, lex.c, parse.h, parse.y, verify.c: Fix
spelling errors.
From-SVN: r48075
Diffstat (limited to 'gcc/java/class.c')
-rw-r--r-- | gcc/java/class.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/java/class.c b/gcc/java/class.c index 6b05435..3e56959 100644 --- a/gcc/java/class.c +++ b/gcc/java/class.c @@ -351,7 +351,7 @@ push_class (class_type, class_name) signature = identifier_subst (class_name, "L", '.', '/', ";"); IDENTIFIER_SIGNATURE_TYPE (signature) = build_pointer_type (class_type); - /* Setting DECL_ARTIFICAL forces dbxout.c to specific the type is + /* Setting DECL_ARTIFICIAL forces dbxout.c to specific the type is both a typedef and in the struct name-space. We may want to re-visit this later, but for now it reduces the changes needed for gdb. */ DECL_ARTIFICIAL (decl) = 1; @@ -786,7 +786,7 @@ set_constant_value (field, constant) if (field == NULL_TREE) warning ("misplaced ConstantValue attribute (not in any field)"); else if (DECL_INITIAL (field) != NULL_TREE) - warning ("duplicate ConstanValue atribute for field '%s'", + warning ("duplicate ConstantValue attribute for field '%s'", IDENTIFIER_POINTER (DECL_NAME (field))); else { |