[llvm-commits] CVS: llvm-java/runtime/runtime.c
Reid Spencer
reid at x10sys.com
Sat Jan 15 18:21:54 PST 2005
Changes in directory llvm-java/runtime:
runtime.c updated: 1.14 -> 1.15
---
Log message:
Update per new Makefile requirements for projects
---
Diffs of the changes: (+3 -3)
Index: llvm-java/runtime/runtime.c
diff -u llvm-java/runtime/runtime.c:1.14 llvm-java/runtime/runtime.c:1.15
--- llvm-java/runtime/runtime.c:1.14 Fri Jan 14 02:30:04 2005
+++ llvm-java/runtime/runtime.c Sat Jan 15 20:21:42 2005
@@ -78,7 +78,7 @@
jint length; \
j##TYPE data[0]; \
};
-#include "types.def"
+#include "llvm/Java/types.def"
static jint llvm_java_get_array_length(JNIEnv* env, jarray array) {
return ((struct llvm_java_booleanarray*) array)->length;
@@ -93,7 +93,7 @@
*isCopy = JNI_FALSE; \
return ((struct llvm_java_ ##TYPE## array*) array)->data; \
}
-#include "types.def"
+#include "llvm/Java/types.def"
#define HANDLE_TYPE(TYPE) \
static void llvm_java_release_ ##TYPE## _array_elements( \
@@ -110,7 +110,7 @@
abort(); \
} \
}
-#include "types.def"
+#include "llvm/Java/types.def"
/* The JNI interface definition */
static const struct JNINativeInterface llvm_java_JNINativeInterface = {
More information about the llvm-commits
mailing list