From e79983f458034c3061645a4c4ff83c9c4d9019b9 Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Tue, 11 Oct 2011 19:55:09 +0000 Subject: Convert standard builtin functions from being arrays to using a functional interface From-SVN: r179820 --- gcc/objc/objc-next-runtime-abi-01.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/objc/objc-next-runtime-abi-01.c') diff --git a/gcc/objc/objc-next-runtime-abi-01.c b/gcc/objc/objc-next-runtime-abi-01.c index 6183a21..c1e60b3 100644 --- a/gcc/objc/objc-next-runtime-abi-01.c +++ b/gcc/objc/objc-next-runtime-abi-01.c @@ -2919,7 +2919,7 @@ objc_build_exc_ptr (struct objc_try_context **cur_try_context) else { tree t; - t = built_in_decls[BUILT_IN_EH_POINTER]; + t = builtin_decl_explicit (BUILT_IN_EH_POINTER); t = build_call_expr (t, 1, integer_zero_node); return fold_convert (objc_object_type, t); } -- cgit v1.1