Commit 59608fe5 by H.J. Lu Committed by H.J. Lu

Run dos2unix on gcc.dg/uninit-19.c

	* gcc.dg/uninit-19.c: Run dos2unix.

From-SVN: r234260
parent ab4c578f
2016-03-16 H.J. Lu <hongjiu.lu@intel.com>
* gcc.dg/uninit-19.c: Run dos2unix.
2016-03-16 Marek Polacek <polacek@redhat.com>
PR c/70093
......
/* { dg-do compile } */
/* { dg-options "-O -Wuninitialized" } */
int a, l, m;
float *b;
float c, d, e, g, h;
unsigned char i, k;
void
fn1 (int p1, float *f1, float *f2, float *f3, unsigned char *c1, float *f4,
unsigned char *c2, float *p10)
{
if (p1 & 8)
b[3] = p10[a]; /* 13. */
}
void
fn2 ()
{
float *n;
if (l & 6)
n = &c + m;
fn1 (l, &d, &e, &g, &i, &h, &k, n); /* 22. */
}
/* { dg-warning "may be used uninitialized" "" { target nonpic } 13 } */
/* { dg-warning "may be used uninitialized" "" { target { ! nonpic } } 22 } */
/* { dg-do compile } */
/* { dg-options "-O -Wuninitialized" } */
int a, l, m;
float *b;
float c, d, e, g, h;
unsigned char i, k;
void
fn1 (int p1, float *f1, float *f2, float *f3, unsigned char *c1, float *f4,
unsigned char *c2, float *p10)
{
if (p1 & 8)
b[3] = p10[a]; /* 13. */
}
void
fn2 ()
{
float *n;
if (l & 6)
n = &c + m;
fn1 (l, &d, &e, &g, &i, &h, &k, n); /* 22. */
}
/* { dg-warning "may be used uninitialized" "" { target nonpic } 13 } */
/* { dg-warning "may be used uninitialized" "" { target { ! nonpic } } 22 } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment