From 5f9ee6953e441cdd6cc0d85229f85c34abb4fd11 Mon Sep 17 00:00:00 2001 From: Jeffrey A Law Date: Sat, 28 Aug 1999 05:33:02 +0000 Subject: [PATCH] gjavah.c, [...]: Do not use C++ style comments in C code. * gjavah.c, jcf-write.c, verify.c: Do not use C++ style comments in C code. From-SVN: r28940 --- gcc/java/ChangeLog | 5 +++++ gcc/java/gjavah.c | 2 +- gcc/java/jcf-write.c | 6 +++--- gcc/java/verify.c | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index bfcfb1665e9..4735ac48735 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,8 @@ +Fri Aug 27 23:31:57 1999 Jeffrey A Law (law@cygnus.com) + + * gjavah.c, jcf-write.c, verify.c: Do not use C++ style + comments in C code. + 1999-08-26 Tom Tromey * gjavah.c (print_cxx_classname): Print "::" before qualified diff --git a/gcc/java/gjavah.c b/gcc/java/gjavah.c index 25747541157..0859e3d4b1e 100644 --- a/gcc/java/gjavah.c +++ b/gcc/java/gjavah.c @@ -840,7 +840,7 @@ DEFUN(print_c_decl, (stream, jcf, name_index, signature_index, is_init, } } -// Print the unqualified method name followed by the signature. +/* Print the unqualified method name followed by the signature. */ static void DEFUN(print_full_cxx_name, (stream, jcf, name_index, signature_index, is_init, name_override), FILE* stream AND JCF* jcf diff --git a/gcc/java/jcf-write.c b/gcc/java/jcf-write.c index 44b4d13954b..91567d04f21 100644 --- a/gcc/java/jcf-write.c +++ b/gcc/java/jcf-write.c @@ -1073,7 +1073,7 @@ emit_if (target, opcode, inv_opcode, state) struct jcf_partial *state; { OP1 (opcode); - // value is 1 byte from reloc back to start of instruction. + /* value is 1 byte from reloc back to start of instruction. */ emit_reloc (1, - inv_opcode, target, state); } @@ -1083,7 +1083,7 @@ emit_goto (target, state) struct jcf_partial *state; { OP1 (OPCODE_goto); - // Value is 1 byte from reloc back to start of instruction. + /* Value is 1 byte from reloc back to start of instruction. */ emit_reloc (1, OPCODE_goto_w, target, state); } @@ -1093,7 +1093,7 @@ emit_jsr (target, state) struct jcf_partial *state; { OP1 (OPCODE_jsr); - // Value is 1 byte from reloc back to start of instruction. + /* Value is 1 byte from reloc back to start of instruction. */ emit_reloc (1, OPCODE_jsr_w, target, state); } diff --git a/gcc/java/verify.c b/gcc/java/verify.c index 8b08a8aacbb..77d96719c4e 100644 --- a/gcc/java/verify.c +++ b/gcc/java/verify.c @@ -1066,7 +1066,7 @@ verify_jvm_instructions (jcf, byte_ops, length) break; case OPCODE_athrow: - // FIXME: athrow also empties the stack. + /* FIXME: athrow also empties the stack. */ pop_type (throwable_type_node); INVALIDATE_PC; break; -- 2.30.2