| Index: src/x64/assembler-x64-inl.h
|
| ===================================================================
|
| --- src/x64/assembler-x64-inl.h (revision 7663)
|
| +++ src/x64/assembler-x64-inl.h (working copy)
|
| @@ -61,15 +61,9 @@
|
| }
|
|
|
|
|
| -void Assembler::emit_code_target(Handle<Code> target,
|
| - RelocInfo::Mode rmode,
|
| - unsigned ast_id) {
|
| +void Assembler::emit_code_target(Handle<Code> target, RelocInfo::Mode rmode) {
|
| ASSERT(RelocInfo::IsCodeTarget(rmode));
|
| - if (rmode == RelocInfo::CODE_TARGET && ast_id != kNoASTId) {
|
| - RecordRelocInfo(RelocInfo::CODE_TARGET_WITH_ID, ast_id);
|
| - } else {
|
| - RecordRelocInfo(rmode);
|
| - }
|
| + RecordRelocInfo(rmode);
|
| int current = code_targets_.length();
|
| if (current > 0 && code_targets_.last().is_identical_to(target)) {
|
| // Optimization if we keep jumping to the same code target.
|
|
|