Commit e6311b9e by Tom Tromey Committed by Tom Tromey

* gjavah.c (print_c_decl): Indentation fix.

From-SVN: r65562
parent 7f685e17
2003-04-13 Tom Tromey <tromey@redhat.com>
* gjavah.c (print_c_decl): Indentation fix.
2003-04-12 Zack Weinberg <zack@codesourcery.com> 2003-04-12 Zack Weinberg <zack@codesourcery.com>
* class.c (make_field_value, make_method_value, get_dispatch_table) * class.c (make_field_value, make_method_value, get_dispatch_table)
......
...@@ -1402,12 +1402,12 @@ print_c_decl (FILE* stream, JCF* jcf, int name_index, int signature_index, ...@@ -1402,12 +1402,12 @@ print_c_decl (FILE* stream, JCF* jcf, int name_index, int signature_index,
because the "new" C++ ABI changed the alignemnt of non-POD because the "new" C++ ABI changed the alignemnt of non-POD
classes. gcj, however, still uses the "old" alignment. */ classes. gcj, however, still uses the "old" alignment. */
if (is_first_data_member && ! (flags & ACC_STATIC) && ! is_method) if (is_first_data_member && ! (flags & ACC_STATIC) && ! is_method)
{ {
is_first_data_member = 0; is_first_data_member = 0;
print_cxx_classname (out, " __attribute__((aligned(__alignof__( ", print_cxx_classname (out, " __attribute__((aligned(__alignof__( ",
jcf, jcf->super_class, 1); jcf, jcf->super_class, 1);
fputs (" )))) ", stream); fputs (" )))) ", stream);
} }
/* Now print the name of the thing. */ /* Now print the name of the thing. */
if (need_space) if (need_space)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment