diff options
| author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-12-11 11:55:15 +0000 |
|---|---|---|
| committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-12-11 11:55:15 +0000 |
| commit | c1e9a32ed75336df86aec5b1a5f81543a6f06000 (patch) | |
| tree | cc77bf2933a7639cd31570c95865fbed06991d96 /gcc/java/class.c | |
| parent | e3fceb5135da0b3322d296b8334b92374b5b1043 (diff) | |
| download | ppe42-gcc-c1e9a32ed75336df86aec5b1a5f81543a6f06000.tar.gz ppe42-gcc-c1e9a32ed75336df86aec5b1a5f81543a6f06000.zip | |
* expr.c (invoke_build_dtable): Renamed dtable -> vtable.
* decl.c (init_decl_processing): Renamed dtable -> vtable.
* class.c (make_class_data): Renamed dtable -> vtable, and
dtable_method_count -> vtable_method_count.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24267 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/class.c')
| -rw-r--r-- | gcc/java/class.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/java/class.c b/gcc/java/class.c index 8deff6eebb9..76f2cb28b0e 100644 --- a/gcc/java/class.c +++ b/gcc/java/class.c @@ -1078,9 +1078,9 @@ make_class_data (type) START_RECORD_CONSTRUCTOR (temp, object_type_node); #if 0 - PUSH_FIELD_VALUE (temp, "dtable", NULL_TREE); + PUSH_FIELD_VALUE (temp, "vtable", NULL_TREE); #else - PUSH_FIELD_VALUE (temp, "dtable", + PUSH_FIELD_VALUE (temp, "vtable", build1 (ADDR_EXPR, dtable_ptr_type, class_dtable_decl)); #endif PUSH_FIELD_VALUE (temp, "sync_info", null_pointer_node); @@ -1103,7 +1103,7 @@ make_class_data (type) PUSH_FIELD_VALUE (cons, "methods", build1 (ADDR_EXPR, method_ptr_type_node, methods_decl)); PUSH_FIELD_VALUE (cons, "method_count", build_int_2 (method_count, 0)); - PUSH_FIELD_VALUE (cons, "dtable_method_count", TYPE_NVIRTUALS (type)); + PUSH_FIELD_VALUE (cons, "vtable_method_count", TYPE_NVIRTUALS (type)); PUSH_FIELD_VALUE (cons, "fields", fields_decl == NULL_TREE ? null_pointer_node : build1 (ADDR_EXPR, field_ptr_type_node, fields_decl)); @@ -1111,7 +1111,7 @@ make_class_data (type) PUSH_FIELD_VALUE (cons, "field_count", build_int_2 (field_count, 0)); PUSH_FIELD_VALUE (cons, "static_field_count", build_int_2 (static_field_count, 0)); - PUSH_FIELD_VALUE (cons, "dtable", + PUSH_FIELD_VALUE (cons, "vtable", dtable_decl == NULL_TREE ? null_pointer_node : build1 (ADDR_EXPR, dtable_ptr_type, dtable_decl)); PUSH_FIELD_VALUE (cons, "interfaces", interfaces); |

