diff options
author | Ian Rogers <irogers@google.com> | 2014-11-04 15:33:55 -0800 |
---|---|---|
committer | Ian Rogers <irogers@google.com> | 2014-11-04 15:33:55 -0800 |
commit | 4bb14043bb118950e3cc73533bc670e4bcfc27aa (patch) | |
tree | f23c1f593120f43d3fc3724e8439389a84b0c410 /runtime/arch | |
parent | 4150611d5229c87e49762b9edf6540995eb325e1 (diff) | |
download | art-4bb14043bb118950e3cc73533bc670e4bcfc27aa.zip art-4bb14043bb118950e3cc73533bc670e4bcfc27aa.tar.gz art-4bb14043bb118950e3cc73533bc670e4bcfc27aa.tar.bz2 |
Fix unused parameters for the Mac.
Change-Id: I76086cc1f448d058de61a613078055d8f01ba4b3
Diffstat (limited to 'runtime/arch')
-rw-r--r-- | runtime/arch/x86_64/entrypoints_init_x86_64.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/arch/x86_64/entrypoints_init_x86_64.cc b/runtime/arch/x86_64/entrypoints_init_x86_64.cc index be73594..1661554 100644 --- a/runtime/arch/x86_64/entrypoints_init_x86_64.cc +++ b/runtime/arch/x86_64/entrypoints_init_x86_64.cc @@ -119,6 +119,7 @@ extern void ResetQuickAllocEntryPoints(QuickEntryPoints* qpoints); void InitEntryPoints(InterpreterEntryPoints* ipoints, JniEntryPoints* jpoints, PortableEntryPoints* ppoints, QuickEntryPoints* qpoints) { #if defined(__APPLE__) + UNUSED(ipoints, jpoints, ppoints, qpoints); UNIMPLEMENTED(FATAL); #else // Interpreter |