[lld][WebAssembly] Reinstate mistakenly disabled test. NFC
[llvm-project.git] / clang / test / Parser / altivec-zvector-bool.c
blob6765d26e2df48af4f755af9de43fcf38cf217277
1 // RUN: %clang_cc1 -triple=powerpc64-unknown-linux-gnu \
2 // RUN: -target-feature +altivec -fsyntax-only %s
3 // RUN: %clang_cc1 -triple=powerpc64le-unknown-linux-gnu \
4 // RUN: -target-feature +altivec -fsyntax-only %s
5 // RUN: %clang_cc1 -triple=powerpc64-ibm-aix-xcoff \
6 // RUN: -target-feature +altivec -fsyntax-only %s
7 // RUN: %clang_cc1 -triple=powerpc-ibm-aix-xcoff \
8 // RUN: -target-feature +altivec -fsyntax-only %s
9 // RUN: %clang_cc1 -triple=powerpc-unknown-linux-gnu \
10 // RUN: -target-feature +altivec -fsyntax-only %s
11 // RUN: %clang_cc1 -triple=s390x-linux-gnu -target-cpu arch11 \
12 // RUN: -fzvector -fsyntax-only %s
13 // RUN: %clang_cc1 -triple=s390x-ibm-zos -target-cpu arch11 \
14 // RUN: -fzvector -fsyntax-only %s
16 __vector bool char bc;
17 __vector bool short bsh;
18 __vector bool short int bshi;
19 __vector bool int bi;
20 __vector _Bool char bc;
21 __vector _Bool short bsh;
22 __vector _Bool short int bshi;
23 __vector _Bool int bi;