7046096: SEGV IN C2 WITH 6U25

Fri, 20 May 2011 12:46:20 -0700

author
kvn
date
Fri, 20 May 2011 12:46:20 -0700
changeset 2927
2b27ef5c2173
parent 2921
b79e8b4ecd76
child 2928
cfbca4d74a61

7046096: SEGV IN C2 WITH 6U25
Summary: Missing fail flag set in strings concatenation code.
Reviewed-by: never

src/share/vm/opto/stringopts.cpp file | annotate | diff | comparison | revisions
     1.1 --- a/src/share/vm/opto/stringopts.cpp	Tue May 17 19:15:34 2011 -0700
     1.2 +++ b/src/share/vm/opto/stringopts.cpp	Fri May 20 12:46:20 2011 -0700
     1.3 @@ -768,6 +768,7 @@
     1.4          tty->cr();
     1.5        }
     1.6  #endif
     1.7 +      fail = true;
     1.8        break;
     1.9      } else if (ptr->is_Proj() && ptr->in(0)->is_Initialize()) {
    1.10        ptr = ptr->in(0)->in(0);

mercurial