# HG changeset patch # User never # Date 1220392985 25200 # Node ID 60bc5071073fc4bd5a53d4b79ce4d4d931bbc1f3 # Parent cf6f0e32e518817b893b982bfb54849805a16e3f 6738933: assert with base pointers must match with compressed oops enabled Reviewed-by: kvn, rasbold diff -r cf6f0e32e518 -r 60bc5071073f src/share/vm/opto/loopopts.cpp --- a/src/share/vm/opto/loopopts.cpp Tue Sep 02 06:55:23 2008 -0700 +++ b/src/share/vm/opto/loopopts.cpp Tue Sep 02 15:03:05 2008 -0700 @@ -932,7 +932,7 @@ // to fold a StoreP and an AddP together (as part of an // address expression) and the AddP and StoreP have // different controls. - if( !x->is_Load() ) _igvn._worklist.yank(x); + if( !x->is_Load() && !x->is_DecodeN() ) _igvn._worklist.yank(x); } _igvn.remove_dead_node(n); }