repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[LLVM] Fix Maintainers.md formatting (NFC)
[llvm-project.git]
/
flang
/
test
/
Driver
/
exec.f90
blob
fd174005ddf62ac13bcaced04389c5d50b6108da
1
! UNSUPPORTED: system-windows
2
! Verify that flang can correctly build executables.
3
4
! RUN: %flang %s -o %t
5
! RUN: env LD_LIBRARY_PATH="$LD_LIBRARY_PATH:%llvmshlibdir" %t | FileCheck %s
6
! RUN: rm -f %t
7
8
! CHECK: Hello, World!
9
program
hello
10
print
*,
"Hello, World!"
11
end program