diff options
Diffstat (limited to 'vm/compiler/Compiler.h')
-rw-r--r-- | vm/compiler/Compiler.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/vm/compiler/Compiler.h b/vm/compiler/Compiler.h index 35d34b3e2..384cb1414 100644 --- a/vm/compiler/Compiler.h +++ b/vm/compiler/Compiler.h @@ -14,12 +14,16 @@ * limitations under the License. */ -#include <Thread.h> -#include <setjmp.h> - #ifndef _DALVIK_VM_COMPILER #define _DALVIK_VM_COMPILER +#include <setjmp.h> +#include "Thread.h" + +#ifdef __cplusplus +extern "C" { +#endif + /* * Uncomment the following to enable JIT signature breakpoint * #define SIGNATURE_BREAKPOINT @@ -241,4 +245,9 @@ void *dvmCompilerGetInterpretTemplate(); JitInstructionSetType dvmCompilerGetInterpretTemplateSet(); u8 dvmGetRegResourceMask(int reg); void dvmDumpCFG(struct CompilationUnit *cUnit, const char *dirPrefix); + +#ifdef __cplusplus +} +#endif + #endif /* _DALVIK_VM_COMPILER */ |