| Index: src/assembler.h
|
| diff --git a/src/assembler.h b/src/assembler.h
|
| index 08c6b38541cf9a12802e2eb5dc9b0146192f6c01..9849527f920c59298a446630a2f43e761d564803 100644
|
| --- a/src/assembler.h
|
| +++ b/src/assembler.h
|
| @@ -816,9 +816,14 @@ class ExternalReference BASE_EMBEDDED {
|
| // Used in the simulator to support different native api calls.
|
| enum Type {
|
| // Builtin call.
|
| - // Object* f(v8::internal::Arguments).
|
| + // Object* f(v8::internal::Arguments) or
|
| + // ObjectPair f(v8::internal::Arguments).
|
| BUILTIN_CALL, // default
|
|
|
| + // Builtin call that returns .
|
| + // ObjectTriple f(v8::internal::Arguments).
|
| + BUILTIN_CALL_TRIPLE,
|
| +
|
| // Builtin that takes float arguments and returns an int.
|
| // int f(double, double).
|
| BUILTIN_COMPARE_CALL,
|
|
|