Index: src/code-stubs-hydrogen.cc |
diff --git a/src/code-stubs-hydrogen.cc b/src/code-stubs-hydrogen.cc |
index 587496fecd1ddf53a32a2a5564aa9cb43f086074..2ccf78c88b5671ae2fd5d3d3b9acc1c0e01b2fd6 100644 |
--- a/src/code-stubs-hydrogen.cc |
+++ b/src/code-stubs-hydrogen.cc |
@@ -389,27 +389,19 @@ |
{ Push(Add<HConstant>(factory->function_string())); } |
is_function.Else(); |
{ |
- IfBuilder is_float32x4(this); |
- is_float32x4.If<HCompareNumericAndBranch>( |
- instance_type, Add<HConstant>(FLOAT32X4_TYPE), Token::EQ); |
- is_float32x4.Then(); |
- { Push(Add<HConstant>(factory->float32x4_string())); } |
- is_float32x4.Else(); |
+ // Is it an undetectable object? |
+ IfBuilder is_undetectable(this); |
+ is_undetectable.If<HIsUndetectableAndBranch>(object); |
+ is_undetectable.Then(); |
{ |
- // Is it an undetectable object? |
- IfBuilder is_undetectable(this); |
- is_undetectable.If<HIsUndetectableAndBranch>(object); |
- is_undetectable.Then(); |
- { |
- // typeof an undetectable object is 'undefined'. |
- Push(undefined_string); |
- } |
- is_undetectable.Else(); |
- { |
- // For any kind of object not handled above, the spec rule for |
- // host objects gives that it is okay to return "object". |
- Push(object_string); |
- } |
+ // typeof an undetectable object is 'undefined'. |
+ Push(undefined_string); |
+ } |
+ is_undetectable.Else(); |
+ { |
+ // For any kind of object not handled above, the spec rule for |
+ // host objects gives that it is okay to return "object". |
+ Push(object_string); |
} |
} |
is_function.End(); |