[flang][driver] Update PP tests to use the new driver

Update the preprocessor regression tests to use the new driver if the new driver is built (FLANG_BUILD_NEW_DRIVER=On), otherwise the tests will still run using f18.

Summary of changes:
- Introduce %flang to the regression tests, which points to the new driver if it is built or otherwise points to f18
- Update all tests in flang/test/Preprocessing/ to use %flang

Differential Revision: https://reviews.llvm.org/D94805
This commit is contained in:
Faris Rehman 2021-01-25 12:07:17 +00:00
parent 171d12489f
commit 1c8f199f44
81 changed files with 85 additions and 80 deletions

View File

@ -1,4 +1,4 @@
!RUN: %f18 -E %s 2>&1 | FileCheck %s !RUN: %flang -E %s 2>&1 | FileCheck %s
!CHECK: if(.not.(.true.)) error stop "assert(" // ".TRUE." // ") failed " // "at "" !CHECK: if(.not.(.true.)) error stop "assert(" // ".TRUE." // ") failed " // "at ""
!CHECK-SAME: assert.F90"": " // "7" !CHECK-SAME: assert.F90"": " // "7"
#define STR(x) #x #define STR(x) #x

View File

@ -3,7 +3,7 @@
!CHECK: flang_major = {{[1-9][0-9]*$}} !CHECK: flang_major = {{[1-9][0-9]*$}}
!CHECK: flang_minor = {{[0-9]+$}} !CHECK: flang_minor = {{[0-9]+$}}
!CHECK: flang_patchlevel = {{[0-9]+$}} !CHECK: flang_patchlevel = {{[0-9]+$}}
!RUN: %f18 -E %s | FileCheck --ignore-case %s !RUN: %flang -E %s | FileCheck --ignore-case %s
integer, parameter :: flang_major = __flang_major__ integer, parameter :: flang_major = __flang_major__

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E -DFOO=1 -DBAR=2 %s | FileCheck %s ! RUN: %flang -E -DFOO=1 -DBAR=2 %s | FileCheck %s
! CHECK: integer :: a = 1 ! CHECK: integer :: a = 1
integer :: a = FOO integer :: a = FOO

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s | FileCheck %s ! RUN: %flang -E %s | FileCheck %s
! CHECK: callbar ! CHECK: callbar
! Ensure that rescanned lines after macro replacement are not ! Ensure that rescanned lines after macro replacement are not
! misinterpreted as fixed-form comments when they start with C or D. ! misinterpreted as fixed-form comments when they start with C or D.

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: character*1hi ! CHECK: character*1hi
! CHECK: dataa/1*1h / ! CHECK: dataa/1*1h /
! CHECK: datab/1*1h / ! CHECK: datab/1*1h /

View File

@ -1,4 +1,4 @@
! RUN: %f18 -I%S -E %s 2>&1 | FileCheck %s ! RUN: %flang -I%S -E %s 2>&1 | FileCheck %s
! CHECK-NOT: :3: ! CHECK-NOT: :3:
#include <empty.h> ! comment #include <empty.h> ! comment
! CHECK-NOT: :5: ! CHECK-NOT: :5:

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(777.eq.777)then ! CHECK: if(777.eq.777)then
* keyword macros * keyword macros
integer, parameter :: KWM = 666 integer, parameter :: KWM = 666

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(kwm.eq.777)then ! CHECK: if(kwm.eq.777)then
* #undef * #undef
integer, parameter :: KWM = 777 integer, parameter :: KWM = 777

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=((666)+111) ! CHECK: res=((666)+111)
* function-like macros * function-like macros
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(kwm.eq.777)then ! CHECK: if(kwm.eq.777)then
* KWMs case-sensitive * KWMs case-sensitive
integer, parameter :: KWM = 777 integer, parameter :: KWM = 777

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=777 ! CHECK: res=777
* KWM split across continuation, implicit padding * KWM split across continuation, implicit padding
integer, parameter :: KWM = 666 integer, parameter :: KWM = 666

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=777 ! CHECK: res=777
* ditto, but with intervening *comment line * ditto, but with intervening *comment line
integer, parameter :: KWM = 666 integer, parameter :: KWM = 666

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=kwm ! CHECK: res=kwm
* KWM split across continuation, clipped after column 72 * KWM split across continuation, clipped after column 72
integer, parameter :: KWM = 666 integer, parameter :: KWM = 666

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=kwm ! CHECK: res=kwm
* KWM with spaces in name at invocation NOT replaced * KWM with spaces in name at invocation NOT replaced
integer, parameter :: KWM = 777 integer, parameter :: KWM = 777

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=((666)+111) ! CHECK: res=((666)+111)
* FLM call split across continuation, implicit padding * FLM call split across continuation, implicit padding
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=((666)+111) ! CHECK: res=((666)+111)
* ditto, but with intervening *comment line * ditto, but with intervening *comment line
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=iflm(666) ! CHECK: res=iflm(666)
* FLM call name split across continuation, clipped * FLM call name split across continuation, clipped
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=((666)+111) ! CHECK: res=((666)+111)
* FLM call name split across continuation * FLM call name split across continuation
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=((666)+111) ! CHECK: res=((666)+111)
* FLM call split between name and ( * FLM call split between name and (
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=((666)+111) ! CHECK: res=((666)+111)
* FLM call split between name and (, with intervening *comment * FLM call split between name and (, with intervening *comment
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=((666)+111) ! CHECK: res=((666)+111)
* FLM call split between name and (, clipped * FLM call split between name and (, clipped
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=((666)+111) ! CHECK: res=((666)+111)
* FLM call split between name and ( and in argument * FLM call split between name and ( and in argument
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(777.eq.777)then ! CHECK: if(777.eq.777)then
* KLM rescan * KLM rescan
integer, parameter :: KWM = 666, KWM2 = 667 integer, parameter :: KWM = 666, KWM2 = 667

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(kwm2.eq.777)then ! CHECK: if(kwm2.eq.777)then
* KLM rescan with #undef (so rescan is after expansion) * KLM rescan with #undef (so rescan is after expansion)
integer, parameter :: KWM2 = 777, KWM = 667 integer, parameter :: KWM2 = 777, KWM = 667

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=((666)+111) ! CHECK: res=((666)+111)
* FLM rescan * FLM rescan
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=((111)+666) ! CHECK: res=((111)+666)
* FLM expansion of argument * FLM expansion of argument
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: ch='KWM' ! CHECK: ch='KWM'
! CHECK: if(ch.eq.'KWM')then ! CHECK: if(ch.eq.'KWM')then
* KWM NOT expanded in 'literal' * KWM NOT expanded in 'literal'

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: ch="KWM" ! CHECK: ch="KWM"
! CHECK: if(ch.eq.'KWM')then ! CHECK: if(ch.eq.'KWM')then
* KWM NOT expanded in "literal" * KWM NOT expanded in "literal"

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: ch=3hKWM ! CHECK: ch=3hKWM
! CHECK: if(ch.eq.'KWM')then ! CHECK: if(ch.eq.'KWM')then
* KWM NOT expanded in 9HHOLLERITH literal * KWM NOT expanded in 9HHOLLERITH literal

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: 100format(3hKWM) ! CHECK: 100format(3hKWM)
! CHECK: if(ch.eq.'KWM')then ! CHECK: if(ch.eq.'KWM')then
* KWM NOT expanded in Hollerith in FORMAT * KWM NOT expanded in Hollerith in FORMAT

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=ikwm2z ! CHECK: res=ikwm2z
* KWM expansion is before token pasting due to fixed-form space removal * KWM expansion is before token pasting due to fixed-form space removal
integer, parameter :: IKWM2Z = 777 integer, parameter :: IKWM2Z = 777

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=((111)+666) ! CHECK: res=((111)+666)
* ## token pasting works in FLM * ## token pasting works in FLM
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: kwm=666 ! CHECK: kwm=666
! CHECK: if(777.eq.777)then ! CHECK: if(777.eq.777)then
* #DEFINE works in fixed form * #DEFINE works in fixed form

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=kw ! CHECK: res=kw
* fixed-form clipping done before KWM expansion on source line * fixed-form clipping done before KWM expansion on source line
integer, parameter :: KW = 777 integer, parameter :: KW = 777

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(777.eq.777)then ! CHECK: if(777.eq.777)then
* \ newline allowed in #define * \ newline allowed in #define
integer, parameter :: KWM = 666 integer, parameter :: KWM = 666

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(777.eq.777)then ! CHECK: if(777.eq.777)then
* /* C comment */ erased from #define * /* C comment */ erased from #define
integer, parameter :: KWM = 666 integer, parameter :: KWM = 666

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(777//ccomment.eq.777)then ! CHECK: if(777//ccomment.eq.777)then
! CHECK: print*,'pp031.F no: ',777//ccomment ! CHECK: print*,'pp031.F no: ',777//ccomment
* // C++ comment NOT erased from #define * // C++ comment NOT erased from #define

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(777.eq.777)then ! CHECK: if(777.eq.777)then
! CHECK: print*,'pp032.F no: ',777 ! CHECK: print*,'pp032.F no: ',777
* /* C comment */ \ newline erased from #define * /* C comment */ \ newline erased from #define

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(777.eq.777)then ! CHECK: if(777.eq.777)then
! CHECK: print*,'pp033.F no: ',777 ! CHECK: print*,'pp033.F no: ',777
* /* C comment \ newline */ erased from #define * /* C comment \ newline */ erased from #define

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(777.eq.777)then ! CHECK: if(777.eq.777)then
! CHECK: print*,'pp034.F no: ',777 ! CHECK: print*,'pp034.F no: ',777
* \ newline allowed in name on KWM definition * \ newline allowed in name on KWM definition

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(777.eq.777)then ! CHECK: if(777.eq.777)then
! CHECK: print*,'pp035.F no: ',777 ! CHECK: print*,'pp035.F no: ',777
* #if 2 .LT. 3 works * #if 2 .LT. 3 works

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(.true.)then ! CHECK: if(.true.)then
! CHECK: print*,'pp036.F no: ',.true. ! CHECK: print*,'pp036.F no: ',.true.
* #define FALSE TRUE ... .FALSE. -> .TRUE. * #define FALSE TRUE ... .FALSE. -> .TRUE.

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(7777.eq.777)then ! CHECK: if(7777.eq.777)then
! CHECK: print*,'pp037.F no: ',7777 ! CHECK: print*,'pp037.F no: ',7777
* fixed-form clipping NOT applied to #define * fixed-form clipping NOT applied to #define

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=((666)+111) ! CHECK: res=((666)+111)
* FLM call with closing ')' on next line (not a continuation) * FLM call with closing ')' on next line (not a continuation)
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res=iflm ! CHECK: res=iflm
! CHECK: (666) ! CHECK: (666)
! CHECK-NOT: res=((666)+111) ! CHECK-NOT: res=((666)+111)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK-NOT: FAIL HARD! ! CHECK-NOT: FAIL HARD!
* #define KWM c, then KWM works as comment line initiator * #define KWM c, then KWM works as comment line initiator
#define KWM c #define KWM c

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: j=666wmj=j+1wm211 ! CHECK: j=666wmj=j+1wm211
* use KWM expansion as continuation indicators * use KWM expansion as continuation indicators
#define KWM 0 #define KWM 0

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK-NOT: goto 2 ! CHECK-NOT: goto 2
* #define c 1, then use c as label in fixed-form * #define c 1, then use c as label in fixed-form
#define c 1 #define c 1

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(kwm.eq.777)then ! CHECK: if(kwm.eq.777)then
* #define with # in column 6 is a continuation line in fixed-form * #define with # in column 6 is a continuation line in fixed-form
integer, parameter :: defineKWM666 = 555 integer, parameter :: defineKWM666 = 555

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK-NOT:z=111 ! CHECK-NOT:z=111
* #define directive amid continuations * #define directive amid continuations
integer, parameter :: KWM = 222, KWM111 = 333, KWM222 = 555 integer, parameter :: KWM = 222, KWM111 = 333, KWM222 = 555

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(777 .eq. 777) then ! CHECK: if(777 .eq. 777) then
! keyword macros ! keyword macros
integer, parameter :: KWM = 666 integer, parameter :: KWM = 666

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(kwm .eq. 777) then ! CHECK: if(kwm .eq. 777) then
! #undef ! #undef
integer, parameter :: KWM = 777 integer, parameter :: KWM = 777

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res = ((666)+111) ! CHECK: res = ((666)+111)
! function-like macros ! function-like macros
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(kwm .eq. 777) then ! CHECK: if(kwm .eq. 777) then
! KWMs case-sensitive ! KWMs case-sensitive
integer, parameter :: KWM = 777 integer, parameter :: KWM = 777

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res = 777 ! CHECK: res = 777
! KWM call name split across continuation, with leading & ! KWM call name split across continuation, with leading &
integer, parameter :: KWM = 666 integer, parameter :: KWM = 666

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res = 777 ! CHECK: res = 777
! ditto, with & ! comment ! ditto, with & ! comment
integer, parameter :: KWM = 666 integer, parameter :: KWM = 666

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res = kwm ! CHECK: res = kwm
! KWM call name split across continuation, no leading &, with & ! comment ! KWM call name split across continuation, no leading &, with & ! comment
integer, parameter :: KWM = 666 integer, parameter :: KWM = 666

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res = kwm ! CHECK: res = kwm
! ditto, but without & ! comment ! ditto, but without & ! comment
integer, parameter :: KWM = 666 integer, parameter :: KWM = 666

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res = ((666)+111) ! CHECK: res = ((666)+111)
! FLM call name split with leading & ! FLM call name split with leading &
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res = ((666)+111) ! CHECK: res = ((666)+111)
! ditto, with & ! comment ! ditto, with & ! comment
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res = iflm (666) ! CHECK: res = iflm (666)
! FLM call name split across continuation, no leading &, with & ! comment ! FLM call name split across continuation, no leading &, with & ! comment
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res = iflm (666) ! CHECK: res = iflm (666)
! ditto, but without & ! comment ! ditto, but without & ! comment
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res = ((666)+111) ! CHECK: res = ((666)+111)
! FLM call split across continuation between name and (, leading & ! FLM call split across continuation between name and (, leading &
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res = ((666)+111) ! CHECK: res = ((666)+111)
! ditto, with & ! comment, leading & ! ditto, with & ! comment, leading &
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res = iflm (666) ! CHECK: res = iflm (666)
! ditto, with & ! comment, no leading & ! ditto, with & ! comment, no leading &
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res = iflm (666) ! CHECK: res = iflm (666)
! FLM call split between name and (, no leading & ! FLM call split between name and (, no leading &
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(777 .eq. 777) then ! CHECK: if(777 .eq. 777) then
! KWM rescan ! KWM rescan
integer, parameter :: KWM = 666, KWM2 = 667 integer, parameter :: KWM = 666, KWM2 = 667

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(kwm2 .eq. 777) then ! CHECK: if(kwm2 .eq. 777) then
! KWM rescan with #undef, proving rescan after expansion ! KWM rescan with #undef, proving rescan after expansion
integer, parameter :: KWM2 = 777, KWM = 667 integer, parameter :: KWM2 = 777, KWM = 667

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res = ((666)+111) ! CHECK: res = ((666)+111)
! FLM rescan ! FLM rescan
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res = ((111)+666) ! CHECK: res = ((111)+666)
! FLM expansion of argument ! FLM expansion of argument
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: ch = 'KWM' ! CHECK: ch = 'KWM'
! CHECK: if(ch .eq. 'KWM') then ! CHECK: if(ch .eq. 'KWM') then
! KWM NOT expanded in 'literal' ! KWM NOT expanded in 'literal'

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: ch = "KWM" ! CHECK: ch = "KWM"
! KWM NOT expanded in "literal" ! KWM NOT expanded in "literal"
#define KWM 666 #define KWM 666

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: ch = 3hKWM ! CHECK: ch = 3hKWM
! KWM NOT expanded in Hollerith literal ! KWM NOT expanded in Hollerith literal
#define KWM 666 #define KWM 666

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: 100 format(3hKWM) ! CHECK: 100 format(3hKWM)
! KWM NOT expanded in Hollerith in FORMAT ! KWM NOT expanded in Hollerith in FORMAT
#define KWM 666 #define KWM 666

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(777 .eq. 777) then ! CHECK: if(777 .eq. 777) then
! #DEFINE works in free form ! #DEFINE works in free form
integer, parameter :: KWM = 666 integer, parameter :: KWM = 666

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: if(777 .eq. 777) then ! CHECK: if(777 .eq. 777) then
! \ newline works in #define ! \ newline works in #define
integer, parameter :: KWM = 666 integer, parameter :: KWM = 666

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res = iflm(666 ) ! CHECK: res = iflm(666 )
! FLM call with closing ')' on next line (not a continuation) ! FLM call with closing ')' on next line (not a continuation)
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK: res = iflm ! CHECK: res = iflm
! FLM call with '(' on next line (not a continuation) ! FLM call with '(' on next line (not a continuation)
integer function IFLM(x) integer function IFLM(x)

View File

@ -1,4 +1,4 @@
! RUN: %f18 -E %s 2>&1 | FileCheck %s ! RUN: %flang -E %s 2>&1 | FileCheck %s
! CHECK-NOT: stop ! CHECK-NOT: stop
! #define KWM !, then KWM works as comment line initiator ! #define KWM !, then KWM works as comment line initiator
#define KWM ! #define KWM !

View File

@ -1,4 +1,4 @@
! RUN: (%f18 -E %s 2>&1 || true) | FileCheck %s ! RUN: (%flang -E %s 2>&1 || true) | FileCheck %s
! CHECK: error: bad character ('&') in Fortran token ! CHECK: error: bad character ('&') in Fortran token
! #define KWM &, use for continuation w/o pasting (ifort and nag seem to continue #define) ! #define KWM &, use for continuation w/o pasting (ifort and nag seem to continue #define)
#define KWM & #define KWM &

View File

@ -73,6 +73,11 @@ tools = [
if config.include_flang_new_driver_test: if config.include_flang_new_driver_test:
tools.append(ToolSubst('%flang-new', command=FindTool('flang-new'), unresolved='fatal')) tools.append(ToolSubst('%flang-new', command=FindTool('flang-new'), unresolved='fatal'))
tools.append(ToolSubst('%flang', command=FindTool('flang-new'), unresolved='fatal'))
else:
tools.append(ToolSubst('%flang', command=FindTool('f18'),
extra_args=["-intrinsic-module-directory "+config.flang_intrinsic_modules_dir],
unresolved='fatal'))
if config.flang_standalone_build: if config.flang_standalone_build:
llvm_config.add_tool_substitutions(tools, [config.flang_llvm_tools_dir]) llvm_config.add_tool_substitutions(tools, [config.flang_llvm_tools_dir])