| Index: src/codegen.h
|
| diff --git a/src/codegen.h b/src/codegen.h
|
| index d0b67f1f45a936b845937a8b6437c36ef1f1eca9..a17ad2a8806843ddb95d51ad81f8ac1d02d7e8af 100644
|
| --- a/src/codegen.h
|
| +++ b/src/codegen.h
|
| @@ -6,6 +6,7 @@
|
| #define V8_CODEGEN_H_
|
|
|
| #include "src/code-stubs.h"
|
| +#include "src/globals.h"
|
| #include "src/runtime/runtime.h"
|
|
|
| // Include the declaration of the architecture defined class CodeGenerator.
|
| @@ -97,8 +98,7 @@ typedef double (*UnaryMathFunctionWithIsolate)(double x, Isolate* isolate);
|
|
|
| UnaryMathFunctionWithIsolate CreateSqrtFunction(Isolate* isolate);
|
|
|
| -
|
| -double modulo(double x, double y);
|
| +V8_EXPORT_PRIVATE double modulo(double x, double y);
|
|
|
| // Custom implementation of math functions.
|
| double fast_sqrt(double input, Isolate* isolate);
|
|
|