mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
7081842: assert(Compile::current()->unique() < (uint)MaxNodeLimit) failed: Node limit exceeded
Add missing node limit check in IGVN optimizer Reviewed-by: iveresov, never
This commit is contained in:
parent
9661feecbc
commit
a46128d0dd
6 changed files with 48 additions and 13 deletions
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
#
|
||||
# Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved.
|
||||
# Copyright (c) 1999, 2011, 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
|
||||
|
@ -45,6 +45,9 @@ case `uname -m` in
|
|||
i386|i486|i586|i686)
|
||||
mach=i386
|
||||
;;
|
||||
x86_64)
|
||||
mach=amd64
|
||||
;;
|
||||
*)
|
||||
echo "Unsupported machine: " `uname -m`
|
||||
exit 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue