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