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

Unified Diff: src/deoptimizer.h

Issue 1439583002: [deoptimizer] Remove unused function argument. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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/deoptimizer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/deoptimizer.h
diff --git a/src/deoptimizer.h b/src/deoptimizer.h
index e2a7569ed972f01a179e8ce99df1883a3f57e9e7..8d06956818e58840f45c20a227351af9dd6d4d14 100644
--- a/src/deoptimizer.h
+++ b/src/deoptimizer.h
@@ -252,9 +252,9 @@ class TranslatedState {
Isolate* isolate() { return isolate_; }
- void Init(Address input_frame_pointer, JSFunction* input_frame_function,
- TranslationIterator* iterator, FixedArray* literal_array,
- RegisterValues* registers, FILE* trace_file);
+ void Init(Address input_frame_pointer, TranslationIterator* iterator,
+ FixedArray* literal_array, RegisterValues* registers,
+ FILE* trace_file);
private:
friend TranslatedValue;
@@ -262,7 +262,6 @@ class TranslatedState {
TranslatedFrame CreateNextTranslatedFrame(TranslationIterator* iterator,
FixedArray* literal_array,
Address fp,
- JSFunction* frame_function,
FILE* trace_file);
TranslatedValue CreateNextTranslatedValue(int frame_index, int value_index,
TranslationIterator* iterator,
« no previous file with comments | « no previous file | src/deoptimizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698