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>
17 lines
591 B
Fortran
17 lines
591 B
Fortran
|
|
! RUN: %flang --version 2>&1 | FileCheck %s --check-prefix=VERSION
|
|
! RUN: not %flang --versions 2>&1 | FileCheck %s --check-prefix=ERROR
|
|
! RUN: %flang_fc1 -version 2>&1 | FileCheck %s --check-prefix=VERSION-FC1
|
|
! RUN: not %flang_fc1 --version 2>&1 | FileCheck %s --check-prefix=ERROR-FC1
|
|
|
|
! VERSION: flang version
|
|
! VERSION-NEXT: Target:
|
|
! VERSION-NEXT: Thread model:
|
|
! VERSION-NEXT: InstalledDir:
|
|
|
|
! ERROR: flang{{.*}}: error: unknown argument '--versions'; did you mean '--version'?
|
|
|
|
! VERSION-FC1: LLVM version
|
|
|
|
! ERROR-FC1: error: unknown argument '--version'; did you mean '-version'?
|