Part of the project to eliminate special handling for triples in lit expressions. Differential Revision: https://reviews.llvm.org/D139967
67 lines
2.4 KiB
Fortran
67 lines
2.4 KiB
Fortran
! Test for correct forwarding of fast-math flags from the compiler driver to the
|
|
! frontend driver
|
|
|
|
! -Ofast => -ffast-math -O3
|
|
! RUN: %flang -Ofast -fsyntax-only -### %s -o %t 2>&1 \
|
|
! RUN: | FileCheck --check-prefix=CHECK-OFAST %s
|
|
! CHECK-OFAST: -fc1
|
|
! CHECK-OFAST-SAME: -ffast-math
|
|
! CHECK-OFAST-SAME: -O3
|
|
|
|
! TODO: update once -fstack-arays is added
|
|
! RUN: %flang -fstack-arrays -fsyntax-only %s -o %t 2>&1 \
|
|
! RUN: | FileCheck --check-prefix=CHECK-STACK-ARRAYS %s
|
|
! CHECK-STACK-ARRAYS: warning: argument unused during compilation: '-fstack-arrays'
|
|
|
|
! -Ofast -fno-fast-math => -O3
|
|
! RUN: %flang -Ofast -fno-fast-math -fsyntax-only -### %s -o %t 2>&1 \
|
|
! RUN: | FileCheck --check-prefix=CHECK-OFAST-NO-FAST %s
|
|
! CHECK-OFAST-NO-FAST: -fc1
|
|
! CHECK-OFAST-NO-FAST-NOT: -ffast-math
|
|
! CHECK-OFAST-NO-FAST-SAME: -O3
|
|
|
|
! -ffast-math => -ffast-math
|
|
! RUN: %flang -ffast-math -fsyntax-only -### %s -o %t 2>&1 \
|
|
! RUN: | FileCheck --check-prefix=CHECK-FFAST %s
|
|
! CHECK-FFAST: -fc1
|
|
! CHECK-FFAST-SAME: -ffast-math
|
|
|
|
! (component flags) => -ffast-math
|
|
! RUN: %flang -fsyntax-only -### %s -o %t \
|
|
! RUN: -fno-honor-infinities \
|
|
! RUN: -fno-honor-nans \
|
|
! RUN: -fassociative-math \
|
|
! RUN: -freciprocal-math \
|
|
! RUN: -fapprox-func \
|
|
! RUN: -fno-signed-zeros \
|
|
! RUN: -ffp-contract=fast \
|
|
! RUN: 2>&1 | FileCheck --check-prefix=CHECK-FROM-COMPS %s
|
|
! CHECK-FROM-COMPS: -fc1
|
|
! CHECK-FROM-COMPS-SAME: -ffast-math
|
|
|
|
! -ffast-math (followed by an alteration) => (component flags)
|
|
! RUN: %flang -ffast-math -fhonor-infinities -fsyntax-only -### %s -o %t 2>&1 \
|
|
! RUN: | FileCheck --check-prefix=CHECK-TO-COMPS %s
|
|
! CHECK-TO-COMPS: -fc1
|
|
! CHECK-TO-COMPS-SAME: -ffp-contract=fast
|
|
! CHECK-TO-COMPS-SAME: -menable-no-nans
|
|
! CHECK-TO-COMPS-SAME: -fapprox-func
|
|
! CHECK-TO-COMPS-SAME: -fno-signed-zeros
|
|
! CHECK-TO-COMPS-SAME: -mreassociate
|
|
! CHECK-TO-COMPS-SAME: -freciprocal-math
|
|
|
|
! Check that -fno-fast-math doesn't clobber -ffp-contract
|
|
! RUN: %flang -ffp-contract=off -fno-fast-math -fsyntax-only -### %s -o %t 2>&1 \
|
|
! RUN: | FileCheck --check-prefix=CHECK-CONTRACT %s
|
|
! CHECK-CONTRACT: -fc1
|
|
! CHECK-CONTRACT-SAME: -ffp-contract=off
|
|
|
|
! Check that -ffast-math causes us to link to crtfastmath.o
|
|
! UNSUPPORTED: system-windows
|
|
! UNSUPPORTED: target=powerpc{{.*}}
|
|
! RUN: %flang -ffast-math -### %s -o %t 2>&1 \
|
|
! RUN: | FileCheck --check-prefix=CHECK-CRT %s
|
|
! CHECK-CRT: {{crtbegin.?\.o}}
|
|
! CHECK-CRT-SAME: crtfastmath.o
|
|
! CHECK-CRT-SAME: {{crtend.?\.o}}
|