brintos

brintos / llvm-project-archived public Read only

0
0
Text · 237 B · 5dae3eb Raw
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