| Index: src/runtime.h
 | 
| diff --git a/src/runtime.h b/src/runtime.h
 | 
| index 83991bb76bbcad04f93f0a2b108a58029a8e133d..fc0a47279c9851dbfaaa1657951ab7944c72c092 100644
 | 
| --- a/src/runtime.h
 | 
| +++ b/src/runtime.h
 | 
| @@ -364,9 +364,11 @@ namespace internal {
 | 
|    F(IS_VAR, 1, 1) \
 | 
|    \
 | 
|    /* expose boolean functions from objects-inl.h */ \
 | 
| -  F(HasFastSmiOnlyElements, 1, 1) \
 | 
| -  F(HasFastElements, 1, 1) \
 | 
| +  F(HasFastSmiElements, 1, 1) \
 | 
| +  F(HasFastSmiOrObjectElements, 1, 1) \
 | 
| +  F(HasFastObjectElements, 1, 1) \
 | 
|    F(HasFastDoubleElements, 1, 1) \
 | 
| +  F(HasFastHoleyElements, 1, 1) \
 | 
|    F(HasDictionaryElements, 1, 1) \
 | 
|    F(HasExternalPixelElements, 1, 1) \
 | 
|    F(HasExternalArrayElements, 1, 1) \
 | 
| 
 |