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
[flang][openacc] Use OpenACC terminator instead of fir.unreachable after Stop stmt...
[llvm-project.git]
/
flang
/
test
/
Preprocessing
/
pp045.F
blob
93c914fbd415e8d51503de2efbebe88fda664ab6
1
! RUN: %flang -E %s 2>&1 | FileCheck %s
2
! CHECK: n = "foobar" // "baz"
3
* # stringizing works in FLM
4
#define STR(x) # x
5
#define MAC(a,b) STR(a ## b)
6
program main
7
character(6) n
8
n = MAC(foo, bar) // STR( baz )
9
end