diff options
| author | Steve Block <steveblock@google.com> | 2010-09-22 15:07:15 +0100 |
|---|---|---|
| committer | Steve Block <steveblock@google.com> | 2010-09-29 18:15:43 +0100 |
| commit | 59151504615d929945dc59db37bf1166937748c6 (patch) | |
| tree | 2199adfe73b4618f685bae891d2d54f2cd997f77 /src/full-codegen.cc | |
| parent | 9ac36c9faca11611ada13b4054edbaa0738661d0 (diff) | |
| download | android_external_v8-59151504615d929945dc59db37bf1166937748c6.tar.gz android_external_v8-59151504615d929945dc59db37bf1166937748c6.tar.bz2 android_external_v8-59151504615d929945dc59db37bf1166937748c6.zip | |
Update V8 to r5447 as required by WebKit r67908
Change-Id: I5af6ccf18523cb7e28460e6bbc044444256cdb97
Diffstat (limited to 'src/full-codegen.cc')
| -rw-r--r-- | src/full-codegen.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/full-codegen.cc b/src/full-codegen.cc index 5ffebfb5..7de4a006 100644 --- a/src/full-codegen.cc +++ b/src/full-codegen.cc @@ -298,6 +298,11 @@ Handle<Code> FullCodeGenerator::MakeCode(CompilationInfo* info) { } +MemOperand FullCodeGenerator::ContextOperand(Register context, int index) { + return CodeGenerator::ContextOperand(context, index); +} + + int FullCodeGenerator::SlotOffset(Slot* slot) { ASSERT(slot != NULL); // Offset is negative because higher indexes are at lower addresses. |
