Skip to content

Commit

Permalink
Fix tag order
Browse files Browse the repository at this point in the history
The following test has passed.
```
make CONF=linux-x86_64-server-fastdebug test TEST="test/hotspot/jtreg/compiler/arguments/TestTraceICs.java"
```
  • Loading branch information
Yi-Fan Tsai committed Dec 5, 2023
1 parent e73696a commit 28d8415
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hotspot/share/logging/logTag.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ class outputStream;
LOG_TAG(iklass) \
LOG_TAG(indy) \
LOG_TAG(init) \
LOG_TAG(inlinecache)\
LOG_TAG(inlining) \
LOG_TAG(install) \
LOG_TAG(interpreter) \
Expand Down Expand Up @@ -213,8 +214,7 @@ class outputStream;
LOG_TAG(vmoperation) \
LOG_TAG(vmthread) \
LOG_TAG(vtables) \
LOG_TAG(vtablestubs) \
LOG_TAG(inlinecache)
LOG_TAG(vtablestubs)

#define PREFIX_LOG_TAG(T) (LogTag::_##T)

Expand Down

0 comments on commit 28d8415

Please sign in to comment.