From: Alexandre Oliva Date: Thu, 10 Dec 2020 09:23:36 +0000 (-0300) Subject: drop __builtin_ from __clear_cache libname X-Git-Tag: upstream/12.2.0~11054 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f2a5e5f3e6d770d16ad3c48c753a952a40c09c16;p=platform%2Fupstream%2Fgcc.git drop __builtin_ from __clear_cache libname I made a cut&pasto in my previous patch for tree.c, causing platforms that have CLEAR_INSN_CACHE defined, and none of the internal __clear_cache expansion overriders, to issue calls to symbols named __builtin___clear_cache rather than __clear_cache, on languages other than those in the C family. Oops. This patch removes __builtin_ from the string used as the libname for __buuiltin___clear_cache. for gcc/ChangeLog * tree.c (build_common_builtin_nodes): Drop __builtin_ from __clear_cache libname. --- diff --git a/gcc/tree.c b/gcc/tree.c index 02ce5dd..9b2ecb3 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -10736,7 +10736,7 @@ build_common_builtin_nodes (void) if (!builtin_decl_explicit_p (BUILT_IN_CLEAR_CACHE)) local_define_builtin ("__builtin___clear_cache", ftype, BUILT_IN_CLEAR_CACHE, - "__builtin___clear_cache", + "__clear_cache", ECF_NOTHROW); local_define_builtin ("__builtin_nonlocal_goto", ftype,