diff options
author | upstream source tree <ports@midipix.org> | 2015-03-15 20:14:05 -0400 |
---|---|---|
committer | upstream source tree <ports@midipix.org> | 2015-03-15 20:14:05 -0400 |
commit | 554fd8c5195424bdbcabf5de30fdc183aba391bd (patch) | |
tree | 976dc5ab7fddf506dadce60ae936f43f58787092 /gcc/testsuite/gcc.dg/vmx/debug-3.c | |
download | cbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.bz2 cbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.xz |
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig;
imported gcc-4.6.4 source tree from verified upstream tarball.
downloading a git-generated archive based on the 'upstream' tag
should provide you with a source tree that is binary identical
to the one extracted from the above tarball.
if you have obtained the source via the command 'git clone',
however, do note that line-endings of files in your working
directory might differ from line-endings of the respective
files in the upstream repository.
Diffstat (limited to 'gcc/testsuite/gcc.dg/vmx/debug-3.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/vmx/debug-3.c | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/vmx/debug-3.c b/gcc/testsuite/gcc.dg/vmx/debug-3.c new file mode 100644 index 000000000..a9fc86629 --- /dev/null +++ b/gcc/testsuite/gcc.dg/vmx/debug-3.c @@ -0,0 +1,75 @@ +#include <altivec.h> +vector unsigned char u8; +vector signed char s8; +vector bool char b8; +vector unsigned short u16; +vector signed short s16; +vector bool short b16; +vector unsigned int u32; +vector signed int s32; +vector bool int b32; +vector float f32; +vector pixel p16; + +void f_u8(vector unsigned char *p) { + u8 = *p; +} +void f_s8(vector signed char *p) { + s8 = *p; +} +void f_b8(vector bool char *p) { + b8 = *p; +} +void f_u16(vector unsigned short *p) { + u16 = *p; +} +void f_s16(vector signed short *p) { + s16 = *p; +} +void f_b16(vector bool short *p) { + b16 = *p; +} +void f_u32(vector unsigned int *p) { + u32 = *p; +} +void f_s32(vector signed int *p) { + s32 = *p; +} +void f_b32(vector bool int *p) { + b32 = *p; +} +void f_f32(vector float *p) { + f32 = *p; +} +void f_p16(vector pixel *p) { + p16 = *p; +} + +int main() { + vector unsigned char u8 = ((vector unsigned char){1, 2, 3, 4, 5, 6, 7, 8, + 9, 10,11,12,13,14,15,16}); + vector signed char s8 = ((vector signed char){1, 2, 3, 4, 5, 6, 7, 8, + 9, 10,11,12,13,14,15,16}); + vector bool char b8 = ((vector bool char){0, -1, 0, -1, 0, 0, 0, 0, + -1, -1, -1, -1, 0, -1, 0, -1}); + vector unsigned short u16 = ((vector unsigned short){1, 2, 3, 4, 5, 6, 7, 8}); + vector signed short s16 = ((vector signed short){1, 2, 3, 4, 5, 6, 7, 8}); + vector bool short b16 = ((vector bool short){-1, 0, -1, 0, -1, -1, 0, 0}); + vector unsigned int u32 = ((vector unsigned int){1, 2, 3, 4}); + vector signed int s32 = ((vector signed int){1, 2, 3, 4}); + vector bool int b32 = ((vector bool int){0, -1, -1, 0}); + vector float f32 = ((vector float){1, 2, 3, 4}); + vector pixel p16 = ((vector pixel){1, 2, 3, 4, 5, 6, 7, 8}); + f_u8(&u8); + f_s8(&s8); + f_b8(&b8); + f_u16(&u16); + f_s16(&s16); + f_b16(&b16); + f_u32(&u32); + f_s32(&s32); + f_b32(&b32); + f_f32(&f32); + f_p16(&p16); + return 0; +} |