mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8239782: CC_INTERP is only used by Zero interpreter
Change CC_INTERP conditional to ZERO and remove in places where unnecessary. Fix build to exclude compilers and rename CppInterpreter to ZeroInterpreter. The "C++ Interpreter" has been removed from the code a while ago. Reviewed-by: dholmes, ihse
This commit is contained in:
parent
6b251191e0
commit
1550fd889b
55 changed files with 288 additions and 639 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -31,7 +31,7 @@
|
|||
// This file contains the platform-independent parts
|
||||
// of the template interpreter and the template interpreter generator.
|
||||
|
||||
#ifndef CC_INTERP
|
||||
#ifndef ZERO
|
||||
|
||||
class InterpreterMacroAssembler;
|
||||
class InterpreterCodelet;
|
||||
|
@ -195,6 +195,6 @@ class TemplateInterpreter: public AbstractInterpreter {
|
|||
static int InterpreterCodeSize;
|
||||
};
|
||||
|
||||
#endif // !CC_INTERP
|
||||
#endif // !ZERO
|
||||
|
||||
#endif // SHARE_INTERPRETER_TEMPLATEINTERPRETER_HPP
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue