1 // RUN: %clang_cc1 -triple riscv64 -target-feature +v -fsyntax-only \
2 // RUN: -verify -fopenmp %s
3 // REQUIRES: riscv-registered-target
4
5 // expected-no-diagnostics
6
foo()7 void foo() {
8 #pragma omp parallel
9 {
10 __rvv_int32m1_t i32m1;
11 }
12 }
13