Commit 08455559 by Christophe Lyon Committed by Christophe Lyon

pr69951.c: Accept argc==0.

2016-03-04  Christophe Lyon  <christophe.lyon@linaro.org>

	* gcc.dg/torture/pr69951.c: Accept argc==0.

From-SVN: r233962
parent e9a35493
2016-03-04 Christophe Lyon <christophe.lyon@linaro.org>
* gcc.dg/torture/pr69951.c: Accept argc==0.
2016-03-04 Richard Biener <rguenther@suse.de>
PR c++/70054
......
......@@ -9,7 +9,7 @@ extern int d __attribute__((alias("c")));
int main(int argc)
{
int *p, *q;
if (argc)
if (argc >= 0)
p = &c, q = &d;
else
p = &b, q = &d;
......
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