diff options
author | Elliott Hughes <enh@google.com> | 2014-07-09 16:41:04 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-07-09 16:41:04 -0700 |
commit | cb7aae167e016a7fb85e64c9245f18d72a4a375b (patch) | |
tree | f2c00fb2c3eba39d40f91aa8f226c1569829928c /debuggerd/arm | |
parent | b518659848b6f3f939e1b5b150ae8586b9b8d0ce (diff) |
Fix arm emulator "D register out of range for selected VFP version" build failure.
Change-Id: Ia37cb3f8ecb00a927fa3fc8b4131c158413646e7
Diffstat (limited to 'debuggerd/arm')
-rw-r--r-- | debuggerd/arm/crashglue.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/debuggerd/arm/crashglue.S b/debuggerd/arm/crashglue.S index 864905687..4fbfd6e45 100644 --- a/debuggerd/arm/crashglue.S +++ b/debuggerd/arm/crashglue.S @@ -32,6 +32,7 @@ crash1: fconstd d13, #13 fconstd d14, #14 fconstd d15, #15 +#if defined(HAS_VFP_D32) fconstd d16, #16 fconstd d17, #17 fconstd d18, #18 @@ -48,6 +49,7 @@ crash1: fconstd d29, #29 fconstd d30, #30 fconstd d31, #31 +#endif mov lr, #0 ldr lr, [lr] |