# HG changeset patch
# User never
# Date 1220392985 25200
# Node ID bf7aca320676c011045491d802a6cb907b0ab047
# Parent  920cbfb2104ce19813ef67a8a4c74d9674bc3d12
6738933: assert with base pointers must match with compressed oops enabled
Reviewed-by: kvn, rasbold

diff -r 920cbfb2104c -r bf7aca320676 hotspot/src/share/vm/opto/loopopts.cpp
--- a/hotspot/src/share/vm/opto/loopopts.cpp	Tue Sep 02 06:55:23 2008 -0700
+++ b/hotspot/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);
         }