Skip to content

Commit f662357

Browse files
committed
8353639: [lworld] IGV: Fix broken type info filter with TypeAryPtr::_field_offset
Reviewed-by: thartmann
1 parent 66ee27a commit f662357

File tree

1 file changed

+1
-1
lines changed
  • src/utils/IdealGraphVisualizer/ServerCompiler/src/main/resources/com/sun/hotspot/igv/servercompiler/filters

1 file changed

+1
-1
lines changed

src/utils/IdealGraphVisualizer/ServerCompiler/src/main/resources/com/sun/hotspot/igv/servercompiler/filters/showTypes.filter

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// "[5:]Class"
1010
function simplify_reference_type(type) {
1111
// Clean up interface lists in reference types.
12-
var m = /(.*)\(.*\)(.*)/.exec(type);
12+
var m = /(.*) \([^\)]*\)(.*)/.exec(type);
1313
if (m != null && typeof m[1] != 'undefined' && typeof m[2] != 'undefined') {
1414
type = m[1] + m[2];
1515
}

0 commit comments

Comments
 (0)