aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.0/gcc/testsuite/gcc.dg/uninit-11.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.4.0/gcc/testsuite/gcc.dg/uninit-11.c')
-rw-r--r--gcc-4.4.0/gcc/testsuite/gcc.dg/uninit-11.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc-4.4.0/gcc/testsuite/gcc.dg/uninit-11.c b/gcc-4.4.0/gcc/testsuite/gcc.dg/uninit-11.c
index 5251f0a2a..2730534e9 100644
--- a/gcc-4.4.0/gcc/testsuite/gcc.dg/uninit-11.c
+++ b/gcc-4.4.0/gcc/testsuite/gcc.dg/uninit-11.c
@@ -17,10 +17,10 @@ void f2(void)
void f3(int p)
{
- int x; /* { dg-warning "may be used" "conditional" } */
+ int x;
if (p)
x = p;
- sink = x;
+ sink = x; /* { dg-warning "may be used" "conditional" } */
}
void f4(int p)