diff options
author | Jakub Jelinek <jakub@redhat.com> | 2011-10-06 16:34:48 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2011-10-06 16:34:48 +0200 |
commit | e7f9dae09c771b101425e5b1f92b74278c48cb8d (patch) | |
tree | 1eb9825a1426b1f1981f774965457b45a5f0fba4 /gcc/builtins.c | |
parent | bc622b2a5ee54492a43a75c4170efefc33690471 (diff) | |
download | gcc-e7f9dae09c771b101425e5b1f92b74278c48cb8d.zip gcc-e7f9dae09c771b101425e5b1f92b74278c48cb8d.tar.gz gcc-e7f9dae09c771b101425e5b1f92b74278c48cb8d.tar.bz2 |
tree.h (avoid_folding_inline_builtin): New prototype.
* tree.h (avoid_folding_inline_builtin): New prototype.
* builtins.c (avoid_folding_inline_builtin): No longer static.
* gimple-fold.c (gimple_fold_builtin): Give up if
avoid_folding_inline_builtin returns true.
From-SVN: r179614
Diffstat (limited to 'gcc/builtins.c')
-rw-r--r-- | gcc/builtins.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c index 3055927..8476b0e 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -10360,7 +10360,7 @@ fold_builtin_varargs (location_t loc, tree fndecl, tree exp, been inlined, otherwise e.g. -D_FORTIFY_SOURCE checking might not be performed. */ -static bool +bool avoid_folding_inline_builtin (tree fndecl) { return (DECL_DECLARED_INLINE_P (fndecl) |