Commit 960d3502 by Eric Botcazou Committed by Eric Botcazou

* gcc.c-torture/execute/20051021-1.c: New test.

From-SVN: r105749
parent d08fd9d6
2005-10-21 Eric Botcazou <ebotcazou@adacore.com>
* gcc.c-torture/execute/20051021-1.c: New test.
2005-10-21 Mark Mitchell <mark@codesourcery.com>
PR c++/24260
/* Verify that TRUTH_AND_EXPR is not wrongly changed to TRUTH_ANDIF_EXPR. */
extern void abort (void);
int count = 0;
int foo1(void)
{
count++;
return 0;
}
int foo2(void)
{
count++;
return 0;
}
int main(void)
{
if ((foo1() == 1) & (foo2() == 1))
abort ();
if (count != 2)
abort ();
return 0;
}
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