repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
2012-02-06-VecInitialization.cpp
blob
720420ea7deabc7f3c7b3dd41aa9b5200dc052d7
1
// RUN: %clang_cc1 -emit-llvm -o - -triple i386-apple-darwin %s | FileCheck %s
2
// PR11930
3
4
typedef
char
vec_t
__attribute__
((
__ext_vector_type__
(
8
)));
5
void
h
() {
6
// CHECK: store <8 x i8>
7
vec_t
v
(
0
);
8
}