blob: 03d61beff175fc09794225ef3a36d417e07d7919 [file] [log] [blame]
// RUN: %clang_cc1 -fopenmp -fsyntax-only -triple aarch64 -target-feature +sve -verify %s
// expected-no-diagnostics
__SVBool_t foo(int);
void test() {
#pragma omp parallel
{
__SVBool_t pg = foo(1);
}
}