Reland [OffloadBundler] Compress bundles over 4GB (#122307)
[llvm-project.git] / flang / test / Preprocessing / pp012.F
blobde4da074f08da7fdfce065e96bf98af17d7a1ab5
1 ! RUN: %flang -E %s 2>&1 | FileCheck %s
2 ! CHECK: res = ((666)+111)
3 * FLM call name split across continuation
4       integer function IFLM(x)
5         integer :: x
6         IFLM = x
7       end function IFLM
8       program main
9 #define IFLM(x) ((x)+111)
10       integer :: res
11       res = IFL
12      +M(666)
13       if (res .eq. 777) then
14         print *, 'pp012.F yes'
15       else
16         print *, 'pp012.F no: ', res
17       end if
18       end