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

Unified Diff: src/arm/stub-cache-arm.cc

Issue 140333004: x64: Fix clang complain error of unused private field. (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: arm and ia32 fixes Created 6 years, 11 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/ia32/stub-cache-ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm/stub-cache-arm.cc
diff --git a/src/arm/stub-cache-arm.cc b/src/arm/stub-cache-arm.cc
index 8ef852b99c3e342abe916f73533bc5ade666c7d0..df1c838b73d7136a55f06538bbd22fc7002d21af 100644
--- a/src/arm/stub-cache-arm.cc
+++ b/src/arm/stub-cache-arm.cc
@@ -860,11 +860,8 @@ static void GenerateFastApiCall(MacroAssembler* masm,
class CallInterceptorCompiler BASE_EMBEDDED {
public:
- CallInterceptorCompiler(CallStubCompiler* stub_compiler,
- const ParameterCount& arguments,
- Register name)
+ CallInterceptorCompiler(CallStubCompiler* stub_compiler, Register name)
: stub_compiler_(stub_compiler),
- arguments_(arguments),
name_(name) {}
void Compile(MacroAssembler* masm,
@@ -997,7 +994,6 @@ class CallInterceptorCompiler BASE_EMBEDDED {
}
CallStubCompiler* stub_compiler_;
- const ParameterCount& arguments_;
Register name_;
};
@@ -1570,7 +1566,7 @@ Handle<Code> CallStubCompiler::CompileCallInterceptor(Handle<JSObject> object,
// Get the receiver from the stack.
__ ldr(r1, MemOperand(sp, argc * kPointerSize));
- CallInterceptorCompiler compiler(this, arguments(), r2);
+ CallInterceptorCompiler compiler(this, r2);
compiler.Compile(masm(), object, holder, name, &lookup, r1, r3, r4, r0,
&miss);
« no previous file with comments | « no previous file | src/ia32/stub-cache-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698