From 4ea56225773c429c9ff1e5eaf8bc28e5441b5c7b Mon Sep 17 00:00:00 2001 From: law Date: Sat, 28 Aug 1999 05:33:02 +0000 Subject: * gjavah.c, jcf-write.c, verify.c: Do not use C++ style comments in C code. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28940 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/java/jcf-write.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/java/jcf-write.c') 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); } -- cgit v1.2.3