[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenOpenCL / vector_logops.cl
blob388f1d7eb74d5a9dfadaf51aeb13c773b660ac52
1 // RUN: %clang_cc1 -O3 %s -emit-llvm -o - | FileCheck %s
3 typedef int int2 __attribute((ext_vector_type(2)));
5 int test1()
7 int2 a = (int2)(1,0);
8 int2 b = (int2)(1,1);
9 return (a&&b).x + (a||b).y;
10 // CHECK: ret i32 -2
13 int test2()
15 int2 a = (int2)(1,0);
16 return (!a).y;
17 // CHECK: ret i32 -1