From 2853523b39a17e06ea08426606449058fb745e93 Mon Sep 17 00:00:00 2001 From: "mostang.com!davidm" Date: Thu, 6 Mar 2003 06:14:36 +0000 Subject: [PATCH] (unwind_and_resume): Rename UNW_REG_EH_ARG0 to UNW_REG_EH+0 and UNW_REG_EH_ARG1 to UNW_REG_EH+1. (Logical change 1.59) --- tests/Gia64-test-rbs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Gia64-test-rbs.c b/tests/Gia64-test-rbs.c index f669d093..e19708f4 100644 --- a/tests/Gia64-test-rbs.c +++ b/tests/Gia64-test-rbs.c @@ -82,8 +82,8 @@ unwind_and_resume (long iteration, int (*next_func[])()) if (unw_get_reg (&c, UNW_REG_IP, &ip) < 0 || unw_set_reg (&c, UNW_REG_IP, (unw_word_t) &resumption_point_label) < 0 - || unw_set_reg (&c, UNW_REG_EH_ARG0, 0) /* ret val */ - || unw_set_reg (&c, UNW_REG_EH_ARG1, ip)) + || unw_set_reg (&c, UNW_REG_EH + 0, 0) /* ret val */ + || unw_set_reg (&c, UNW_REG_EH + 1, ip)) panic ("failed to redirect to resumption_point\n"); if (verbose)