Fix LLVM build: Add 2 more arguments to ComputeInvokeInfo.

Change-Id: Ie4ee046bc7a108bc904dfd3e957d510ac3452ed0
diff --git a/src/compiler_llvm/method_compiler.cc b/src/compiler_llvm/method_compiler.cc
index 03f4458..28e952f 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";