13 lines · c
1// RUN: %clang_cc1 -triple riscv64 -target-feature +v -fsyntax-only \2// RUN: -verify -fopenmp %s3// REQUIRES: riscv-registered-target4 5// expected-no-diagnostics6 7void foo() {8 #pragma omp parallel9 {10 __rvv_int32m1_t i32m1;11 }12}13