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
This commit is contained in:
David Edelsohn 2001-05-05 01:50:06 +00:00 committed by David Edelsohn
parent 4f380204a2
commit a92644e78a
2 changed files with 5 additions and 32 deletions

View File

@ -1,3 +1,8 @@
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.

View File

@ -1,32 +0,0 @@
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];
}