Fix LLVM build: Add 2 more arguments to ComputeInvokeInfo.
(cherry picked from commit be081476c33a04bdd6f3b53ced9db7f21fa80cec)
Change-Id: If4b6de214235b6e7921ba60cde3d736c5649eb98
diff --git a/src/compiler_llvm/method_compiler.cc b/src/compiler_llvm/method_compiler.cc
index f8e8910..0c04bf1 100644
--- a/src/compiler_llvm/method_compiler.cc
+++ b/src/compiler_llvm/method_compiler.cc
@@ -2929,9 +2929,11 @@
oat_compilation_unit_->GetCallee(callee_method_idx, is_static ? kAccStatic : 0));
int vtable_idx = -1; // Currently unused
+ uintptr_t direct_code = 0; // Currently unused
+ uintptr_t direct_method = 0; // Currently unused
bool is_fast_path = compiler_->
ComputeInvokeInfo(callee_method_idx, callee_oatcompilation_unit.get(),
- invoke_type, vtable_idx);
+ invoke_type, vtable_idx, direct_code, direct_method);
CHECK(is_fast_path) << "Slow path for invoke static/direct is unimplemented";