summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2015-01-26 15:46:40 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-01-26 15:46:41 +0000
commit60430803a7964b68269e42f04acadb070b25c58c (patch)
tree46056ff39cdf661ea943400cfeff1ccd7dcaadb3
parentf90eec005997f98c1a9f874fbbf68414e5f9c766 (diff)
parentbc503348a1da573488503cc2819c9e30807bea31 (diff)
Merge "Fix Mac build."
-rw-r--r--runtime/arch/x86/context_x86.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/arch/x86/context_x86.h b/runtime/arch/x86/context_x86.h
index d18be54fee..28dcd2117a 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).