gcc.c-torture/execute/
20000412-3.c with no ChangeLog entry.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41858
138bc75d-0d04-0410-961f-
82ee72b054a4
+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.
+++ /dev/null
-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];
-}
-