[flang][openacc] Use OpenACC terminator instead of fir.unreachable after Stop stmt...
[llvm-project.git] / flang / test / Preprocessing / pp010.F
blobd8bc5a79ec7541411ca3a262a9328d628c809fa3
1 ! RUN: %flang -E %s 2>&1 | FileCheck %s
2 ! CHECK: res = ((666)+111)
3 * ditto, but with intervening *comment line
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 *comment
13      +M(666)
14       if (res .eq. 777) then
15         print *, 'pp010.F yes'
16       else
17         print *, 'pp010.F no: ', res
18       end if
19       end