Use JValue* instead of byte* on the LLVM side too.

Change-Id: I9e64943387ddbd0cf03520d28ba47551d80a4ada
diff --git a/src/compiler_llvm/utils_llvm.cc b/src/compiler_llvm/utils_llvm.cc
index 6acf076..0941b3e 100644
--- a/src/compiler_llvm/utils_llvm.cc
+++ b/src/compiler_llvm/utils_llvm.cc
@@ -139,7 +139,7 @@
   addr = rsloaderGetSymbolAddress(relocatable, LLVMStubName(method).c_str());
   CHECK(addr) << "Error: ELF (" << file_name << ") has no symbol " << LLVMStubName(method);
   method->SetInvokeStub(reinterpret_cast<void (*)(const art::Method*, art::Object*, art::Thread*,
-                                                  art::byte*, art::JValue*)>(addr));
+                                                  art::JValue*, art::JValue*)>(addr));
 
   close(fd);
 }