brintos

brintos / llvm-project-archived public Read only

0
0
Text · 288 B · 5a81a1e Raw
13 lines · plain
1! REQUIRES: flang-rt2! UNSUPPORTED: offload-cuda3 4! Verify that flang can correctly build executables.5 6! RUN: %flang -L"%libdir" %s -o %t7! RUN: env LD_LIBRARY_PATH="$LD_LIBRARY_PATH:%libdir" %t | FileCheck %s8 9! CHECK: Hello, World!10program hello11  print *, "Hello, World!"12end program13