summaryrefslogtreecommitdiff
path: root/deps/v8/src/typing-asm.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/typing-asm.h')
-rw-r--r--deps/v8/src/typing-asm.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/deps/v8/src/typing-asm.h b/deps/v8/src/typing-asm.h
index 54796ed4dd..c7984b2965 100644
--- a/deps/v8/src/typing-asm.h
+++ b/deps/v8/src/typing-asm.h
@@ -92,7 +92,7 @@ class AsmTyper : public AstVisitor {
Type* expected_type_;
Type* computed_type_;
VariableInfo* property_info_;
- int intish_; // How many ops we've gone without a x|0.
+ int32_t intish_; // How many ops we've gone without a x|0.
Type* return_type_; // Return type of last function.
size_t array_size_; // Array size of last ArrayLiteral.
@@ -135,6 +135,9 @@ class AsmTyper : public AstVisitor {
void VisitHeapAccess(Property* expr, bool assigning, Type* assignment_type);
+ void CheckPolymorphicStdlibArguments(enum StandardMember standard_member,
+ ZoneList<Expression*>* args);
+
Expression* GetReceiverOfPropertyAccess(Expression* expr, const char* name);
bool IsMathObject(Expression* expr);
bool IsSIMDObject(Expression* expr);