hotspot/src/share/vm/ci/ciObjectFactory.cpp
changeset 13969 d2a189b83b87
parent 13929 8da0dc50a6e4
child 13974 791cba24758f
--- a/hotspot/src/share/vm/ci/ciObjectFactory.cpp	Mon Oct 08 17:04:00 2012 -0700
+++ b/hotspot/src/share/vm/ci/ciObjectFactory.cpp	Tue Oct 09 10:11:38 2012 +0200
@@ -146,7 +146,7 @@
 
   for (int i = T_BOOLEAN; i <= T_CONFLICT; i++) {
     BasicType t = (BasicType)i;
-    if (type2name(t) != NULL && t != T_OBJECT && t != T_ARRAY && t != T_NARROWOOP) {
+    if (type2name(t) != NULL && t != T_OBJECT && t != T_ARRAY && t != T_NARROWOOP && t != T_NARROWKLASS) {
       ciType::_basic_types[t] = new (_arena) ciType(t);
       init_ident_of(ciType::_basic_types[t]);
     }