diff options
author | Mike Stump <mikestump@comcast.net> | 2011-02-21 21:38:21 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2011-02-21 21:38:21 +0000 |
commit | d1d46f9f70fff00e39f71183909f37605a113b3f (patch) | |
tree | 3a09989bc2b7ebdaa2146f5f3b8aa2731fc84b6f /gcc/config/darwin-protos.h | |
parent | 23e0d9301971df49e1b283e948a548faf0d3facd (diff) | |
download | gcc-d1d46f9f70fff00e39f71183909f37605a113b3f.tar.gz |
re PR target/47822 (Multiple test suite failures due to revision 170321)
PR target/47822
* config/darwin-protos.h (darwin_init_cfstring_builtins): Return a
tree so we can get save the type.
* config/i386/darwin.h (SUBTARGET_INIT_BUILTINS): Reserve builtin slot
for CFString instead of trying to use past the end of the builtins.
* config/i386/i386.c (IX86_BUILTIN_CFSTRING): Likewise.
* config/rs6000/rs6000-builtin.def (RS6000_BUILTIN_CFSTRING): Likewise.
* config/rs6000/darwin.h (SUBTARGET_INIT_BUILTINS): Likewise.
* config/darwin.c (DARWIN_BUILTIN_CFSTRINGMAKECONSTANTSTRING):
Rename to darwin_builtin_cfstring.
(darwin_init_cfstring_builtins): Return the built type.
From-SVN: r170376
Diffstat (limited to 'gcc/config/darwin-protos.h')
-rw-r--r-- | gcc/config/darwin-protos.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/darwin-protos.h b/gcc/config/darwin-protos.h index 00230994ad5..4a9961119c5 100644 --- a/gcc/config/darwin-protos.h +++ b/gcc/config/darwin-protos.h @@ -110,7 +110,7 @@ extern void darwin_asm_output_aligned_decl_common (FILE *, tree, const char *, extern bool darwin_binds_local_p (const_tree); extern void darwin_cpp_builtins (struct cpp_reader *); -extern void darwin_init_cfstring_builtins (unsigned); +extern tree darwin_init_cfstring_builtins (unsigned); extern tree darwin_fold_builtin (tree, int, tree *, bool); extern tree darwin_objc_construct_string (tree); extern bool darwin_cfstring_p (tree); |