Reland [OffloadBundler] Compress bundles over 4GB (#122307)
[llvm-project.git] / flang / test / Preprocessing / pp107.F90
blob7a78e7548c87106463f25e04675d1662768324bd
1 ! RUN: %flang -E %s 2>&1 | FileCheck %s
2 ! CHECK: res = KWM
3 ! KWM call name split across continuation, no leading &, with & ! comment
4       integer, parameter :: KWM = 666
5 #define KWM 777
6       integer :: res
7       res = KW& ! comment
9       if (res .eq. 777) then
10         print *, 'pp107.F90 yes'
11       else
12         print *, 'pp107.F90 no: ', res
13       end if
14       end