dashboard
repositories
activity
search
login
lzh
/
A133
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
fix dts - symbol error
ronnie
2022-10-23
4bf14332546635f50a1bf7f3df4c0a8e29643280
[~lzh/A133.git]
/
android
/
external
/
clang
/
test
/
CodeGenOpenCL
/
vectorLoadStore.cl
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 %s -emit-llvm -O0 -o - | FileCheck %s
typedef char char3 __attribute((ext_vector_type(3)));;
// Check for optimized vec3 load/store which treats vec3 as vec4.
void foo(char3 *P, char3 *Q) {
*P = *Q;
// CHECK: %{{.*}} = shufflevector <4 x i8> %{{.*}}, <4 x i8> undef, <3 x i32> <i32 0, i32 1, i32 2>
}