repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Implement C _FloatN, _FloatNx types.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vmx
/
dos-bug-2-gdb.c
blob
4ec47b12d2a3a19949d5c8d139560ba1bb03f0b0
1
#include <altivec.h>
2
static
vector
unsigned int
v
= {
0x01020304
,
0x05060708
,
0x21324354
,
0x65768798
};
3
static
vector
unsigned int
f
() {
return
vec_splat
(
v
,
0
); }
4
int
main
() {
5
vector
unsigned int
x
=
f
();
6
return
0
;
7
}