| Index: src/x64/codegen-x64-inl.h
|
| ===================================================================
|
| --- src/x64/codegen-x64-inl.h (revision 2163)
|
| +++ src/x64/codegen-x64-inl.h (working copy)
|
| @@ -37,6 +37,17 @@
|
| void DeferredCode::Jump() { UNIMPLEMENTED(); }
|
| void DeferredCode::Branch(Condition cc) { UNIMPLEMENTED(); }
|
|
|
| +
|
| +void CodeGenerator::GenerateMathSin(ZoneList<Expression*>* args) {
|
| + GenerateFastMathOp(SIN, args);
|
| +}
|
| +
|
| +
|
| +void CodeGenerator::GenerateMathCos(ZoneList<Expression*>* args) {
|
| + GenerateFastMathOp(COS, args);
|
| +}
|
| +
|
| +
|
| } } // namespace v8::internal
|
|
|
| #endif // V8_X64_CODEGEN_X64_INL_H_
|
|
|