aboutsummaryrefslogtreecommitdiff
path: root/gcc/java
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/java')
-rw-r--r--gcc/java/ChangeLog5
-rw-r--r--gcc/java/gjavah.c2
-rw-r--r--gcc/java/jcf-write.c6
-rw-r--r--gcc/java/verify.c2
4 files changed, 10 insertions, 5 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog
index bfcfb16..4735ac4 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 <tromey@cygnus.com>
* gjavah.c (print_cxx_classname): Print "::" before qualified
diff --git a/gcc/java/gjavah.c b/gcc/java/gjavah.c
index 2574754..0859e3d 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 44b4d13..91567d0 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 8b08a8a..77d9671 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;