1 // RUN: %clang_cc1 -fopenmp -fsyntax-only -triple aarch64 -target-feature +sve -verify %s 2 // expected-no-diagnostics 3 4 __SVBool_t foo(int); 5 test()6 void test() { 7 #pragma omp parallel 8 { 9 __SVBool_t pg = foo(1); 10 } 11 } 12