diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-26 01:25:20 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-26 01:25:20 +0000 |
commit | 6d77ed9258cbd3bc0de2971c6c501140493686db (patch) | |
tree | 3361bfee7bbd0f755ff02c5d8d2bb9e0a58ca2d3 /gcc/testsuite/gcc.c-torture/execute/builtins/fprintf.c | |
parent | 4e741c1ddb038b1409c7c0c974c8f7f3ebfeb3ac (diff) | |
download | ppe42-gcc-6d77ed9258cbd3bc0de2971c6c501140493686db.tar.gz ppe42-gcc-6d77ed9258cbd3bc0de2971c6c501140493686db.zip |
PR middle-end/25022
* builtins.c (expand_builtin_printf, expand_builtin_fprintf,
fold_builtin_fputs, fold_builtin_printf, fold_builtin_fprintf):
Lookup the explicit replacement functions for any unlocked
stdio builtin transformations.
testsuite:
* gcc.c-torture/execute/builtins/fprintf.c,
gcc.c-torture/execute/builtins/fputs-lib.c,
gcc.c-torture/execute/builtins/fputs.c,
gcc.c-torture/execute/builtins/lib/fprintf.c,
gcc.c-torture/execute/builtins/lib/printf.c,
gcc.c-torture/execute/builtins/printf.c: Test the unlocked style.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@107535 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/execute/builtins/fprintf.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/execute/builtins/fprintf.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/execute/builtins/fprintf.c b/gcc/testsuite/gcc.c-torture/execute/builtins/fprintf.c index 6b6e71b78f8..f7db2e0618e 100644 --- a/gcc/testsuite/gcc.c-torture/execute/builtins/fprintf.c +++ b/gcc/testsuite/gcc.c-torture/execute/builtins/fprintf.c @@ -6,6 +6,7 @@ Written by Kaveh R. Ghazi, 1/7/2001. */ #include <stdio.h> +extern int fprintf_unlocked (FILE *, const char *, ...); extern void abort(void); void @@ -15,6 +16,8 @@ main_test (void) const char *const s1 = "hello world"; const char *const s2[] = { s1, 0 }, *const*s3; + fprintf (*s_ptr, ""); + fprintf (*s_ptr, "%s", ""); fprintf (*s_ptr, "%s", "hello"); fprintf (*s_ptr, "%s", "\n"); fprintf (*s_ptr, "%s", *s2); @@ -49,4 +52,10 @@ main_test (void) /* Test at least one instance of the __builtin_ style. We do this to ensure that it works and that the prototype is correct. */ __builtin_fprintf (*s_ptr, "%s", "hello world\n"); + /* Check the unlocked style, these evaluate to nothing to avoid + problems on systems without the unlocked functions. */ + fprintf_unlocked (*s_ptr, ""); + __builtin_fprintf_unlocked (*s_ptr, ""); + fprintf_unlocked (*s_ptr, "%s", ""); + __builtin_fprintf_unlocked (*s_ptr, "%s", ""); } |