diff options
author | austern <austern@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-20 20:11:41 +0000 |
---|---|---|
committer | austern <austern@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-20 20:11:41 +0000 |
commit | 46a7e21638fc236886e619c5c889f552384073c3 (patch) | |
tree | a8c54e7d5be9f8fb754934d667e66e6346bf3f62 /gcc/c-common.h | |
parent | 0cf506c886ca609627c8a38b1b44f4309a68f552 (diff) | |
download | gcc-46a7e21638fc236886e619c5c889f552384073c3.tar.gz |
PR c++/19044
* c-common.c (set_builtin_user_assembler_name): New.
* c-common.h (set_builtin_user_assembler_name): Declare.
* c-decl.c (finish_decl): Use set_builtin_user_assembler_name
* decl.c (make_rtl_for_nonlocal_decl): Use set_builtin_user_assembler_name
* g++.dg/ext/builtin6.C: New
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@92428 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index d0fbaa837df..8ebc560169f 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -674,6 +674,8 @@ extern tree c_build_qualified_type (tree, int); frontends. */ extern void c_common_nodes_and_builtins (void); +extern void set_builtin_user_assembler_name (tree decl, const char *asmspec); + extern void disable_builtin_function (const char *); extern tree build_va_arg (tree, tree); |