brintos

brintos / llvm-project-archived public Read only

0
0
Text · 213 B · 03d61be Raw
12 lines · cpp
1// RUN: %clang_cc1 -fopenmp -fsyntax-only -triple aarch64 -target-feature +sve -verify %s2// expected-no-diagnostics3 4__SVBool_t foo(int);5 6void test() {7#pragma omp parallel8  {9    __SVBool_t pg = foo(1);10  }11}12