From 0c1e7e423a9072db79fb1ce5d99d4355ae3ed258 Mon Sep 17 00:00:00 2001 From: Andrew MacLeod Date: Fri, 25 Nov 2011 13:35:13 +0000 Subject: re PR other/51011 (FAIL: gcc.dg/atomic-generic.c (test for excess errors)) 2011-11-24 Andrew MacLeod PR other/51011 * tree.h (is_builtin_name): No longer external. * builtins.c (is_builtin_name): Make static. * varasm.c (incorporeal_function_p): __sync and __atomic external calls are not incorporeal and may need asm label processing. From-SVN: r181721 --- gcc/varasm.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gcc/varasm.c') diff --git a/gcc/varasm.c b/gcc/varasm.c index 2c31af91b9a..a01f49af58f 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -2109,7 +2109,9 @@ incorporeal_function_p (tree decl) return true; name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)); - if (is_builtin_name (name)) + /* Atomic or sync builtins which have survived this far will be + resolved externally and therefore are not incorporeal. */ + if (strncmp (name, "__builtin_", 10) == 0) return true; } return false; -- cgit v1.2.1