boehm.cc: Remove stray semicolon.
* boehm.cc: Remove stray semicolon. * interpret.cc: Likewise. * prims.cc: Likewise. * verify.cc (_Jv_BytecodeVerifier::verify_fail): Move definition earlier to ensure default arguments are processed. * gcj/array.h (JArray): Add forward declaration. (elements): Likewise. * gcj/javaprim.h: Remove stray semicolons. * include/bohm-gc.h: Likewise. * include/jni.h: Likewise. * include/jvm.h: Likewise. * java/lang/Class.h (_Jv_GetArrayClass): Declare _Jv_NewArrayClass. From-SVN: r60556
This commit is contained in:
parent
239b7deaef
commit
dfe5a36e95
11 changed files with 80 additions and 54 deletions
|
@ -1,7 +1,7 @@
|
|||
// -*- c++ -*-
|
||||
// boehm-gc.h - Defines for Boehm collector.
|
||||
|
||||
/* Copyright (C) 1998, 1999 Free Software Foundation
|
||||
/* Copyright (C) 1998, 1999, 2002 Free Software Foundation
|
||||
|
||||
This file is part of libgcj.
|
||||
|
||||
|
@ -19,7 +19,7 @@ extern "C"
|
|||
{
|
||||
JV_MARKOBJ_DECL;
|
||||
JV_MARKARRAY_DECL;
|
||||
};
|
||||
}
|
||||
|
||||
// Enough stuff to inline _Jv_AllocObj. Ugly.
|
||||
#include <gcj/javaprims.h>
|
||||
|
|
|
@ -211,7 +211,7 @@ extern JNIIMPEXP jint JNICALL JNI_CreateJavaVM (JavaVM **, void **, void *);
|
|||
extern JNIIMPEXP jint JNICALL JNI_GetCreatedJavaVMs(JavaVM **, jsize, jsize *);
|
||||
|
||||
#ifdef __cplusplus
|
||||
};
|
||||
}
|
||||
#endif /* __cplusplus */
|
||||
|
||||
typedef union jvalue
|
||||
|
|
|
@ -162,7 +162,7 @@ namespace gcj
|
|||
|
||||
/* Set to true by _Jv_CreateJavaVM. */
|
||||
extern bool runtimeInitialized;
|
||||
};
|
||||
}
|
||||
|
||||
/* Type of pointer used as finalizer. */
|
||||
typedef void _Jv_FinalizerFunc (jobject);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue