altivec-6.c: Use vector_size attribute, not mode.

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.

From-SVN: r79682
This commit is contained in:
Paolo Bonzini 2004-03-19 13:18:13 +00:00 committed by Paolo Bonzini
parent 7e463bda23
commit 0c6196661d
3 changed files with 8 additions and 3 deletions

View File

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

View File

@ -3,7 +3,7 @@
/* 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;

View File

@ -3,8 +3,8 @@
/* 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)