Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: src/assembler.h

Issue 2080173002: [debug] always add debug slot for statements. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/assembler.h
diff --git a/src/assembler.h b/src/assembler.h
index 2ae221e355fba5ecedb2b472fb116930819deab5..35bc0afdb0d4f2ee4dd194c1fff460fe2c10e35c 100644
--- a/src/assembler.h
+++ b/src/assembler.h
@@ -1152,14 +1152,14 @@ class AssemblerPositionsRecorder : public PositionsRecorder {
written_statement_position_(RelocInfo::kNoPosition) {}
// Set current position to pos.
- bool RecordPosition(int pos);
+ void RecordPosition(int pos);
// Set current statement position to pos.
- bool RecordStatementPosition(int pos);
+ void RecordStatementPosition(int pos);
private:
// Write recorded positions to relocation information.
- bool WriteRecordedPositions();
+ void WriteRecordedPositions();
Assembler* assembler_;
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698