| Index: src/objects-debug.cc
 | 
| ===================================================================
 | 
| --- src/objects-debug.cc	(revision 1305)
 | 
| +++ src/objects-debug.cc	(working copy)
 | 
| @@ -693,16 +693,10 @@
 | 
|        ASSERT(arr->get(JSRegExp::kAtomPatternIndex)->IsString());
 | 
|        break;
 | 
|      }
 | 
| -    case JSRegExp::JSCRE: {
 | 
| -      FixedArray* arr = FixedArray::cast(data());
 | 
| -      Object* jscre_data = arr->get(JSRegExp::kJscreDataIndex);
 | 
| -      ASSERT(jscre_data->IsFixedArray() || jscre_data->IsUndefined());
 | 
| -      break;
 | 
| -    }
 | 
|      case JSRegExp::IRREGEXP: {
 | 
|        FixedArray* arr = FixedArray::cast(data());
 | 
| -      Object* jscre_data = arr->get(JSRegExp::kJscreDataIndex);
 | 
| -      ASSERT(jscre_data->IsFixedArray());
 | 
| +      Object* irregexp_data = arr->get(JSRegExp::kIrregexpDataIndex);
 | 
| +      ASSERT(irregexp_data->IsFixedArray());
 | 
|        break;
 | 
|      }
 | 
|      default:
 | 
| 
 |