Skip to content

Commit 88f0ea7

Browse files
bobpengxieDamonFool
bobpengxie
authored andcommittedJan 6, 2023
8299726: [cleanup] Some code cleanup in opto/compile.hpp
Reviewed-by: thartmann
1 parent 0234f81 commit 88f0ea7

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed
 

‎src/hotspot/share/opto/compile.hpp

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -56,7 +56,6 @@ class CloneMap;
5656
class ConnectionGraph;
5757
class IdealGraphPrinter;
5858
class InlineTree;
59-
class Int_Array;
6059
class Matcher;
6160
class MachConstantNode;
6261
class MachConstantBaseNode;
@@ -77,12 +76,10 @@ class PhaseCCP;
7776
class PhaseOutput;
7877
class RootNode;
7978
class relocInfo;
80-
class Scope;
8179
class StartNode;
8280
class SafePointNode;
8381
class JVMState;
8482
class Type;
85-
class TypeData;
8683
class TypeInt;
8784
class TypeInteger;
8885
class TypeKlassPtr;
@@ -164,7 +161,6 @@ class CloneMap {
164161
void set_clone_idx(int x) { _clone_idx = x; }
165162
bool is_debug() const { return _debug; }
166163
void set_debug(bool debug) { _debug = debug; }
167-
static const char* debug_option_name;
168164

169165
bool same_idx(node_idx_t k1, node_idx_t k2) const { return idx(k1) == idx(k2); }
170166
bool same_gen(node_idx_t k1, node_idx_t k2) const { return gen(k1) == gen(k2); }

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Jan 6, 2023

@openjdk-notifier[bot]
Please sign in to comment.