Commit 6c4322d7 by Ben Elliston Committed by Ben Elliston

altivec-23.c: Do not use a typedef name as a type specifier...

	* gcc.target/powerpc/altivec-23.c: Do not use a typedef name as a
	type specifier, as they are not permitted according to the AltiVec
	Programming Interface Manual.

From-SVN: r130268
parent af246415
2007-11-18 Ben Elliston <bje@au.ibm.com>
* gcc.target/powerpc/altivec-23.c: Do not use a typedef name as a
type specifier, as they are not permitted according to the AltiVec
Programming Interface Manual.
2007-11-17 Tobias Burnus <burnus@net-b.de>
PR fortran/34133
......@@ -8,9 +8,8 @@
#include <altivec.h>
typedef int bt;
typedef vector bt vt;
typedef struct { vt x; bt y[sizeof(vt) / sizeof (bt)]; } st;
typedef vector int vt;
typedef struct { vt x; int y[sizeof(vt) / sizeof (int)]; } st;
#define INIT { 1, 2, 3, 4 }
void f ()
......
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