]> gcc.gnu.org Git - gcc.git/commitdiff
jcf.h: Fix obvious typo in comment.
authorPer Bothner <per@bothner.com>
Mon, 3 Dec 2001 23:09:42 +0000 (15:09 -0800)
committerPer Bothner <bothner@gcc.gnu.org>
Mon, 3 Dec 2001 23:09:42 +0000 (15:09 -0800)
* jcf.h:  Fix obvious typo in comment.
* typeck.c (build_null_signature):  Add comment.

From-SVN: r47569

gcc/java/ChangeLog
gcc/java/jcf.h
gcc/java/typeck.c

index e61445b7934688066c74564aa4bec025a7bd023c..8feb252fb4cc6b9641bac033985e637ed8eb4b54 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-03  Per Bothner  <per@bothner.com>
+
+       * jcf.h:  Fix obvious typo in comment.
+       * typeck.c (build_null_signature):  Add comment.
+
 2001-12-03  Neil Booth  <neil@daikokuya.demon.co.uk>
 
        * expr.c: Remove leading capital from diagnostic messages, as
index 1feaaa8bccf04095a9ca8486f2e98a42b10fe5f5..434dce11b3020decbf65c648213f9e7cd165aa9e 100644 (file)
@@ -233,7 +233,7 @@ extern int jcf_unexpected_eof PARAMS ((JCF*, int)) ATTRIBUTE_NORETURN;
 /* Extract a character from a Java-style Utf8 string.
  * PTR points to the current character.
  * LIMIT points to the end of the Utf8 string.
- * PTR is incremented to point after the character thta gets returns.
+ * PTR is incremented to point after the character that gets returned.
  * On an error, -1 is returned. */
 #define UTF8_GET(PTR, LIMIT) \
   ((PTR) >= (LIMIT) ? -1 \
index 4f8a34e752e021d9322a79068c70c2c37dd39a25..34dbc2e2ba73547dee40fca0831aacc1c857c770 100644 (file)
@@ -589,6 +589,8 @@ get_type_from_signature (tree signature)
   return type;
 }
 
+/* Ignore signature and always return null.  Used by has_method. */
+
 static tree
 build_null_signature (type)
      tree type ATTRIBUTE_UNUSED;
This page took 0.078259 seconds and 5 git commands to generate.