
The conditions in a test did not match the target that was being requested. This resulted in a test failure when building with -DTARGETS_TO_BUILD=X86. This is now fixed.
47 lines
1.7 KiB
Fortran
47 lines
1.7 KiB
Fortran
! Test --print-supported-cpus and associated aliases, -mcpu=help and
|
|
! -mtune=help
|
|
|
|
! RUN: %if x86-registered-target %{ \
|
|
! RUN: %flang --target=x86_64-unknown-linux-gnu --print-supported-cpus 2>&1 \
|
|
! RUN: | FileCheck %s --check-prefixes=X86,CHECK \
|
|
! RUN: %}
|
|
! RUN: %if x86-registered-target %{ \
|
|
! RUN: %flang --target=x86_64-unknown-linux-gnu -mcpu=help 2>&1 \
|
|
! RUN: | FileCheck %s --check-prefixes=X86,CHECK \
|
|
! RUN: %}
|
|
! RUN: %if x86-registered-target %{ \
|
|
! RUN: %flang --target=x86_64-unknown-linux-gnu -mtune=help 2>&1 \
|
|
! RUN: | FileCheck %s --check-prefixes=X86,CHECK \
|
|
! RUN: %}
|
|
|
|
! RUN: %if aarch64-registered-target %{ \
|
|
! RUN: %flang --target=aarch64-unknown-linux-gnu --print-supported-cpus 2>&1 \
|
|
! RUN: | FileCheck %s --check-prefixes=AARCH64,CHECK \
|
|
! RUN: %}
|
|
! RUN: %if aarch64-registered-target %{ \
|
|
! RUN: %flang --target=aarch64-unknown-linux-gnu -mcpu=help 2>&1 \
|
|
! RUN: | FileCheck %s --check-prefixes=AARCH64,CHECK \
|
|
! RUN: %}
|
|
! RUN: %if aarch64-registered-target %{ \
|
|
! RUN: %flang --target=aarch64-unknown-linux-gnu -mtune=help 2>&1 \
|
|
! RUN: | FileCheck %s --check-prefixes=AARCH64,CHECK \
|
|
! RUN: %}
|
|
|
|
! CHECK-NOT: warning: argument unused during compilation
|
|
|
|
! X86: Target: x86_64-unknown-linux-gnu
|
|
! X86: corei7
|
|
|
|
! AARCH64: Target: aarch64-unknown-linux-gnu
|
|
! AARCH64: cortex-a73
|
|
! AARCH64: cortex-a75
|
|
|
|
! The footer displayed contains a reference to clang. This should be changed to
|
|
! flang, but that requires a change in llvm/MCSubtargetInfo. When that happens,
|
|
! this test will need to be updated and this comment can be removed.
|
|
|
|
! CHECK: Use -mcpu or -mtune to specify the target's processor.
|
|
! CHECK: For example, clang --target=aarch64-unknown-linux-gnu
|
|
|
|
end program
|