brintos

brintos / llvm-project-archived public Read only

0
0
Text · 269 B · bcc37e4 Raw
13 lines · plain
1!RUN: %flang_fc1 -emit-hlfir -fopenmp -fopenmp-version=60 %s -o - | FileCheck %s2 3!This shouldn't crash. Check for a symptom of a successful compilation4!CHECK: omp.map.info5 6subroutine f007  implicit none8  integer :: x9  !$omp target map(x)10  !$omp end target11end12  13