| Index: src/hydrogen-instructions.cc
 | 
| ===================================================================
 | 
| --- src/hydrogen-instructions.cc	(revision 7187)
 | 
| +++ src/hydrogen-instructions.cc	(working copy)
 | 
| @@ -1230,12 +1230,17 @@
 | 
|  }
 | 
|  
 | 
|  
 | 
| -void HLoadGlobal::PrintDataTo(StringStream* stream) {
 | 
| +void HLoadGlobalCell::PrintDataTo(StringStream* stream) {
 | 
|    stream->Add("[%p]", *cell());
 | 
|    if (check_hole_value()) stream->Add(" (deleteable/read-only)");
 | 
|  }
 | 
|  
 | 
|  
 | 
| +void HLoadGlobalGeneric::PrintDataTo(StringStream* stream) {
 | 
| +  stream->Add("%o ", *name());
 | 
| +}
 | 
| +
 | 
| +
 | 
|  void HStoreGlobal::PrintDataTo(StringStream* stream) {
 | 
|    stream->Add("[%p] = ", *cell());
 | 
|    value()->PrintNameTo(stream);
 | 
| 
 |