Use JValue* instead of byte* on the LLVM side too.
(cherry picked from commit 949f4c6c469a27bdc8a45062201cce703089506d)
Change-Id: Ied50d31003f67d3aead8e8abd6ecbab7609c3c84
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);
}