diff options
author | Vladimir Marko <vmarko@google.com> | 2015-01-26 15:33:03 +0000 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2015-01-26 15:43:39 +0000 |
commit | bc503348a1da573488503cc2819c9e30807bea31 (patch) | |
tree | 46056ff39cdf661ea943400cfeff1ccd7dcaadb3 | |
parent | f90eec005997f98c1a9f874fbbf68414e5f9c766 (diff) | |
download | art-bc503348a1da573488503cc2819c9e30807bea31.zip art-bc503348a1da573488503cc2819c9e30807bea31.tar.gz art-bc503348a1da573488503cc2819c9e30807bea31.tar.bz2 |
Fix Mac build.
Change-Id: I88c0b3c7b799df8dd0aab86b6801c37093045129
-rw-r--r-- | runtime/arch/x86/context_x86.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/arch/x86/context_x86.h b/runtime/arch/x86/context_x86.h index d18be54..28dcd21 100644 --- a/runtime/arch/x86/context_x86.h +++ b/runtime/arch/x86/context_x86.h @@ -94,7 +94,7 @@ class X86Context : public Context { // Pointers to register locations. Values are initialized to NULL or the special registers below. uintptr_t* gprs_[kNumberOfCpuRegisters]; - uintptr_t* fprs_[kNumberOfFloatRegisters]; + uint32_t* fprs_[kNumberOfFloatRegisters]; // Hold values for esp and eip if they are not located within a stack frame. EIP is somewhat // special in that it cannot be encoded normally as a register operand to an instruction (except // in 64bit addressing modes). |