* gcc.dg/altivec-6.c: Use vector_size attribute, not mode.
* gcc.dg/ppc64-abi-3.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79682
138bc75d-0d04-0410-961f-
82ee72b054a4
+2004-03-19 Paolo Bonzini <bonzini@gnu.org>
+
+ * gcc.dg/altivec-6.c: Use vector_size attribute, not mode.
+ * gcc.dg/ppc64-abi-3.c: Likewise.
+
2004-03-19 Giovanni Bajo <giovannibajo@gcc.gnu.org>
PR c++/14545
/* These denote "generic" GCC vectors. */
-static int __attribute__((mode(V4SI))) x, y;
+static int __attribute__((vector_size(16))) x, y;
static vector signed int i,j;
static vector signed short s,t;
/* Testcase to check for ABI compliance of parameter passing
for the PowerPC64 ABI. */
-typedef int __attribute__((mode(V4SI))) v4si;
-typedef int __attribute__((mode(V2SI))) v2si;
+typedef int __attribute__((vector_size(16))) v4si;
+typedef int __attribute__((vector_size(8))) v2si;
v4si
f(v4si v)