diff options
| author | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-05-18 22:50:18 +0000 |
|---|---|---|
| committer | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-05-18 22:50:18 +0000 |
| commit | c3dd0e8588136d0b1ce121dcebf82701189af760 (patch) | |
| tree | 23ecaab214fa670de91432fd475bcf75356f771b | |
| parent | d7bb133fa9523c6f4603e9cd1ecfb25ee32da246 (diff) | |
| download | ppe42-gcc-c3dd0e8588136d0b1ce121dcebf82701189af760.tar.gz ppe42-gcc-c3dd0e8588136d0b1ce121dcebf82701189af760.zip | |
* unwind-dw2.c (uw_identify_context): Use the CFA, not the IP.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@124837 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/unwind-dw2.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6033a605f42..4fda2e6eb6e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2007-05-18 Geoffrey Keating <geoffk@apple.com> + + * unwind-dw2.c (uw_identify_context): Use the CFA, not the IP. + 2007-05-18 H.J. Lu <hongjiu.lu@intel.com> PR target/31989 diff --git a/gcc/unwind-dw2.c b/gcc/unwind-dw2.c index a4fad20f4cd..8add4175a8e 100644 --- a/gcc/unwind-dw2.c +++ b/gcc/unwind-dw2.c @@ -1526,7 +1526,7 @@ uw_install_context_1 (struct _Unwind_Context *current, static inline _Unwind_Ptr uw_identify_context (struct _Unwind_Context *context) { - return _Unwind_GetIP (context); + return _Unwind_GetCFA (context); } |

