| Index: src/full-codegen.cc
|
| diff --git a/src/full-codegen.cc b/src/full-codegen.cc
|
| index a890f15974a23c46b9e58440f55f83d14c268802..5cfaf89c840b5eca790bdbfed615994ca985ff55 100644
|
| --- a/src/full-codegen.cc
|
| +++ b/src/full-codegen.cc
|
| @@ -558,10 +558,9 @@ void FullCodeGenerator::SetStatementPosition(int pos) {
|
| }
|
|
|
|
|
| -void FullCodeGenerator::SetSourcePosition(
|
| - int pos, PositionRecordingType recording_type) {
|
| +void FullCodeGenerator::SetSourcePosition(int pos) {
|
| if (FLAG_debug_info && pos != RelocInfo::kNoPosition) {
|
| - masm_->positions_recorder()->RecordPosition(pos, recording_type);
|
| + masm_->positions_recorder()->RecordPosition(pos);
|
| }
|
| }
|
|
|
|
|