summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJameson Nash <vtjnash@gmail.com>2020-12-16 13:43:10 -0500
committerDave Watson <dade.watson@gmail.com>2021-02-17 09:13:17 -0800
commitcfb3a7824285048dca0ce40e3a1687751b26fc1c (patch)
treea9e991175f65ce86872c218e6428fab582cb5aa5 /include
parentd21f565432686032b3d534e5ccaac56a3a454eef (diff)
downloadlibunwind-cfb3a7824285048dca0ce40e3a1687751b26fc1c.tar.gz
stop lying about the ARM PC location
I am not sure why it should lie about the PC register and use a different random value (LR), when the actual value is also easily available. The rate of passing tests seems to be the same.
Diffstat (limited to 'include')
-rw-r--r--include/libunwind-arm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libunwind-arm.h b/include/libunwind-arm.h
index 80f87c07..0bea7958 100644
--- a/include/libunwind-arm.h
+++ b/include/libunwind-arm.h
@@ -244,7 +244,7 @@ typedef enum
UNW_TDEP_LAST_REG = UNW_ARM_D31,
- UNW_TDEP_IP = UNW_ARM_R14, /* A little white lie. */
+ UNW_TDEP_IP = UNW_ARM_R15,
UNW_TDEP_SP = UNW_ARM_R13,
UNW_TDEP_EH = UNW_ARM_R0 /* FIXME. */
}