Commit f677599e by Jakub Jelinek Committed by Jakub Jelinek

* config/arm/unwind-arm.h (_Unwind_GetIPInfo): Fix pasto.

From-SVN: r111674
parent 0f2f71b5
2006-03-03 Jakub Jelinek <jakub@redhat.com>
* config/arm/unwind-arm.h (_Unwind_GetIPInfo): Fix pasto.
2006-03-02 Roger Sayle <roger@eyesopen.com> 2006-03-02 Roger Sayle <roger@eyesopen.com>
* simplify-rtx.c (simplify_unary_operation): When simplifying * simplify-rtx.c (simplify_unary_operation): When simplifying
......
...@@ -250,7 +250,7 @@ extern "C" { ...@@ -250,7 +250,7 @@ extern "C" {
#define _Unwind_GetIP(context) \ #define _Unwind_GetIP(context) \
(_Unwind_GetGR (context, 15) & ~(_Unwind_Word)1) (_Unwind_GetGR (context, 15) & ~(_Unwind_Word)1)
#define _Unwind_GetIP(context, ip_before_insn) \ #define _Unwind_GetIPInfo(context, ip_before_insn) \
(*ip_before_insn = 0, _Unwind_GetGR (context, 15) & ~(_Unwind_Word)1) (*ip_before_insn = 0, _Unwind_GetGR (context, 15) & ~(_Unwind_Word)1)
static inline void static inline void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment