Skip to content

Commit f92745d

Browse files
author
Eric Caspole
committedDec 7, 2020
8257718: LogCompilation: late_inline doesnt work right for JDK 8 logs
Reviewed-by: redestad, kvn
1 parent 6937d9f commit f92745d

File tree

1 file changed

+2
-2
lines changed
  • src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler

1 file changed

+2
-2
lines changed
 

‎src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler/LogParser.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -638,9 +638,9 @@ private void reportInternalError(String msg, Exception e) {
638638
}
639639
}
640640
if (e != null) {
641-
throw new Error(msg, e);
641+
throw new InternalError(msg, e);
642642
} else {
643-
throw new Error(msg);
643+
throw new InternalError(msg);
644644
}
645645
}
646646

0 commit comments

Comments
 (0)
Please sign in to comment.