aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.0/gcc/testsuite/gcc.dg/uninit-pr19430.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.4.0/gcc/testsuite/gcc.dg/uninit-pr19430.c')
-rw-r--r--gcc-4.4.0/gcc/testsuite/gcc.dg/uninit-pr19430.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc-4.4.0/gcc/testsuite/gcc.dg/uninit-pr19430.c b/gcc-4.4.0/gcc/testsuite/gcc.dg/uninit-pr19430.c
index ecf9c0096..19b5105b8 100644
--- a/gcc-4.4.0/gcc/testsuite/gcc.dg/uninit-pr19430.c
+++ b/gcc-4.4.0/gcc/testsuite/gcc.dg/uninit-pr19430.c
@@ -18,10 +18,10 @@ foo (int i)
int foo2( void ) {
- int rc; /* { dg-warning "'rc' is used uninitialized in this function" } */
+ int rc;
return rc;
*&rc = 0;
-}
+} /* { dg-warning "'rc' is used uninitialized in this function" } */
extern int printf(const char *, ...);
void frob(int *pi);