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>
13 lines
848 B
Fortran
13 lines
848 B
Fortran
! Test that flang forwards -fno-omit-frame-pointer and -fomit-frame-pointer Flang frontend
|
|
! RUN: %flang --target=aarch64-none-none -fsyntax-only -### %s -o %t 2>&1 | FileCheck %s --check-prefix=CHECK-NOVALUE
|
|
! CHECK-NOVALUE: "-fc1"{{.*}}"-mframe-pointer=non-leaf"
|
|
|
|
! RUN: %flang -fomit-frame-pointer --target=aarch64-none-none -fsyntax-only -### %s -o %t 2>&1 | FileCheck %s --check-prefix=CHECK-NONEFP
|
|
! CHECK-NONEFP: "-fc1"{{.*}}"-mframe-pointer=none"
|
|
|
|
! RUN: %flang -fno-omit-frame-pointer --target=aarch64-none-none -fsyntax-only -### %s -o %t 2>&1 | FileCheck %s --check-prefix=CHECK-NONLEAFFP
|
|
! CHECK-NONLEAFFP: "-fc1"{{.*}}"-mframe-pointer=non-leaf"
|
|
|
|
! RUN: %flang -fno-omit-frame-pointer --target=x86-none-none -fsyntax-only -### %s -o %t 2>&1 | FileCheck %s --check-prefix=CHECK-ALLFP
|
|
! CHECK-ALLFP: "-fc1"{{.*}}"-mframe-pointer=all"
|