This does a global rename from `flang-new` to `flang`. I also removed/changed any TODOs that I found related to making this change. --------- Co-authored-by: H. Vetinari <h.vetinari@gmx.com> Co-authored-by: Andrzej Warzynski <andrzej.warzynski@arm.com>
8 lines
425 B
Fortran
8 lines
425 B
Fortran
! Check that flang driver can handle multiple inputs at once.
|
|
|
|
! RUN: %clang --driver-mode=flang -### -fsyntax-only %S/Inputs/one.f90 %S/Inputs/two.f90 2>&1 | FileCheck --check-prefixes=CHECK-SYNTAX-ONLY %s
|
|
! CHECK-SYNTAX-ONLY-LABEL: "{{[^"]*}}flang{{[^"/]*}}" "-fc1"
|
|
! CHECK-SYNTAX-ONLY: "{{[^"]*}}/Inputs/one.f90"
|
|
! CHECK-SYNTAX-ONLY-LABEL: "{{[^"]*}}flang{{[^"/]*}}" "-fc1"
|
|
! CHECK-SYNTAX-ONLY: "{{[^"]*}}/Inputs/two.f90"
|