+2003-03-30 Glen Nakamura <glen@imodulo.com>
+
+ * gcc.dg/20030324-1.c: Add comments and abort if test fails.
+
2003-03-28 Roger Sayle <roger@eyesopen.com>
* gcc.c-torture/execute/ieee/fp-cmp-6.c: Correct test for -O0.
/* { dg-do run } */
/* { dg-options "-O -fstrength-reduce -fstrict-aliasing -fforce-mem -fgcse" } */
+/* PR optimization/10087 */
+/* Contributed by Peter van Hoof <p.van-hoof@qub.ac.uk> */
+
+extern void abort(void);
+
void b(int*,int*);
typedef struct {
s = E[j][i].T1;
b(&j,&i);
- printf( "result %.6e\n", s);
+ if (s != 1)
+ abort ();
return 0;
}