Commit a92644e7 by David Edelsohn Committed by David Edelsohn

20001227-1.c: Remove duplicate of gcc.c-torture/execute/20000412-3.c with no ChangeLog entry.

        * gcc.c-torture/execute/20001227-1.c: Remove duplicate of
        gcc.c-torture/execute/20000412-3.c with no ChangeLog entry.

From-SVN: r41858
parent 4f380204
2001-05-04 David Edelsohn <edelsohn@gnu.org>
* gcc.c-torture/execute/20001227-1.c: Remove duplicate of
gcc.c-torture/execute/20000412-3.c with no ChangeLog entry.
2001-05-04 Neil Booth <neil@daikokuya.demon.co.uk>
* gcc.c-torture/execute/longlong.c: Update for 16 bit int issues.
......
typedef struct {
char y;
char x[32];
} X;
int z (void)
{
X xxx;
xxx.x[0] =
xxx.x[31] = '0';
xxx.y = 0xf;
return f (xxx, xxx);
}
int main (void)
{
int val;
val = z ();
if (val != 0x60)
abort ();
exit (0);
}
int f(X x, X y)
{
if (x.y != y.y)
return 'F';
return x.x[0] + y.x[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