[llvm-commits] CVS: llvm-java/runtime/runtime.c

Alkis Evlogimenos alkis at cs.uiuc.edu
Fri Apr 1 19:06:47 PST 2005



Changes in directory llvm-java/runtime:

runtime.c updated: 1.26 -> 1.27
---
Log message:

Add the name of the class in the typeinfo struct inside the class
record.


---
Diffs of the changes:  (+3 -0)

 runtime.c |    3 +++
 1 files changed, 3 insertions(+)


Index: llvm-java/runtime/runtime.c
diff -u llvm-java/runtime/runtime.c:1.26 llvm-java/runtime/runtime.c:1.27
--- llvm-java/runtime/runtime.c:1.26	Fri Apr  1 16:59:20 2005
+++ llvm-java/runtime/runtime.c	Fri Apr  1 21:06:35 2005
@@ -18,6 +18,9 @@
 };
 
 struct llvm_java_object_typeinfo {
+  /* The name of this class */
+  const char** name;
+
   /* The number of super classes to java.lang.Object. */
   jint depth;
 






More information about the llvm-commits mailing list