| Index: src/x64/codegen-x64-inl.h
|
| ===================================================================
|
| --- src/x64/codegen-x64-inl.h (revision 2231)
|
| +++ src/x64/codegen-x64-inl.h (working copy)
|
| @@ -32,10 +32,12 @@
|
| namespace v8 {
|
| namespace internal {
|
|
|
| +#define __ ACCESS_MASM(masm_)
|
| +
|
| // Platform-specific inline functions.
|
|
|
| -void DeferredCode::Jump() { UNIMPLEMENTED(); }
|
| -void DeferredCode::Branch(Condition cc) { UNIMPLEMENTED(); }
|
| +void DeferredCode::Jump() { __ jmp(&entry_label_); }
|
| +void DeferredCode::Branch(Condition cc) { __ j(cc, &entry_label_); }
|
|
|
|
|
| void CodeGenerator::GenerateMathSin(ZoneList<Expression*>* args) {
|
| @@ -47,6 +49,7 @@
|
| GenerateFastMathOp(COS, args);
|
| }
|
|
|
| +#undef __
|
|
|
| } } // namespace v8::internal
|
|
|
|
|