aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZack Weinberg <zackw@stanford.edu>2001-07-07 18:26:11 +0000
committerZack Weinberg <zack@gcc.gnu.org>2001-07-07 18:26:11 +0000
commit74d04dd13b38cadf338049f187c4960693172aaa (patch)
tree06c929436fc765eefcde39a5cb3c08b4822362a8
parent8dd5d49d0e947401b893901df99cac4dd12722ed (diff)
downloadgcc-74d04dd13b38cadf338049f187c4960693172aaa.zip
gcc-74d04dd13b38cadf338049f187c4960693172aaa.tar.gz
gcc-74d04dd13b38cadf338049f187c4960693172aaa.tar.bz2
* verify.c: Don't use // comments.
From-SVN: r43840
-rw-r--r--gcc/java/ChangeLog4
-rw-r--r--gcc/java/verify.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog
index 0b4d4de..fd94fb7 100644
--- a/gcc/java/ChangeLog
+++ b/gcc/java/ChangeLog
@@ -1,3 +1,7 @@
+2001-07-07 Zack Weinberg <zackw@stanford.edu>
+
+ * verify.c: Don't use // comments.
+
2001-07-05 Tom Tromey <tromey@redhat.com>
* lang.c (flag_assume_compiled): Removed.
diff --git a/gcc/java/verify.c b/gcc/java/verify.c
index 9414843..eadb4e6 100644
--- a/gcc/java/verify.c
+++ b/gcc/java/verify.c
@@ -1052,8 +1052,8 @@ verify_jvm_instructions (jcf, byte_ops, length)
if (!nargs || notZero)
VERIFICATION_ERROR
("invalid argument number in invokeinterface");
- // If we verify/resolve the constant pool, as we should,
- // this test (and the one just following) are redundant.
+ /* If we verify/resolve the constant pool, as we should,
+ this test (and the one just following) are redundant. */
if (! self_is_interface)
VERIFICATION_ERROR ("invokeinterface calls method not in interface");
break;