forked from OSchip/llvm-project
[CodeGen] limit tests to current pass manager to avoid variability; NFC
Post-commit feedback for d69c4372bf
says the output
may vary between pass managers. This is hopefully a
quick fix, but we might want to investigate how to
better solve this type of problem.
This commit is contained in:
parent
89c41c335d
commit
cc86b87a57
|
@ -1,6 +1,6 @@
|
|||
// NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py
|
||||
// RUN: %clang_cc1 -triple aarch64-arm-none-eabi -target-feature +neon -target-feature +bf16 \
|
||||
// RUN: -disable-O0-optnone -emit-llvm %s -o - | opt -S -mem2reg | FileCheck %s
|
||||
// RUN: -disable-O0-optnone -emit-llvm -fno-legacy-pass-manager %s -o - | opt -S -mem2reg | FileCheck %s
|
||||
|
||||
#include <arm_neon.h>
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py
|
||||
// RUN: %clang_cc1 -triple aarch64-arm-none-eabi -target-feature +neon -target-feature +bf16 \
|
||||
// RUN: -disable-O0-optnone -emit-llvm %s -o - | opt -S -mem2reg | FileCheck %s
|
||||
// RUN: -disable-O0-optnone -emit-llvm -fno-legacy-pass-manager %s -o - | opt -S -mem2reg | FileCheck %s
|
||||
|
||||
#include <arm_neon.h>
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
// NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py
|
||||
// RUN: %clang_cc1 -triple aarch64-arm-none-eabi -target-feature +neon -target-feature +bf16 \
|
||||
// RUN: -disable-O0-optnone -emit-llvm %s -o - | opt -S -mem2reg | FileCheck --check-prefix=CHECK-LE %s
|
||||
// RUN: -disable-O0-optnone -emit-llvm -fno-legacy-pass-manager %s -o - | opt -S -mem2reg | FileCheck --check-prefix=CHECK-LE %s
|
||||
// RUN: %clang_cc1 -triple aarch64_be-arm-none-eabi -target-feature +neon -target-feature +bf16 \
|
||||
// RUN: -disable-O0-optnone -emit-llvm %s -o - | opt -S -mem2reg | FileCheck --check-prefix=CHECK-BE %s
|
||||
// RUN: -disable-O0-optnone -emit-llvm %s -fno-legacy-pass-manager -o - | opt -S -mem2reg | FileCheck --check-prefix=CHECK-BE %s
|
||||
|
||||
#include <arm_neon.h>
|
||||
|
||||
|
|
|
@ -1,19 +1,19 @@
|
|||
// NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py
|
||||
// RUN: %clang_cc1 \
|
||||
// RUN: -triple aarch64-arm-none-eabi -target-feature +neon -target-feature +bf16 \
|
||||
// RUN: -disable-O0-optnone -emit-llvm -o - %s \
|
||||
// RUN: -disable-O0-optnone -emit-llvm -fno-legacy-pass-manager -o - %s \
|
||||
// RUN: | opt -S -mem2reg \
|
||||
// RUN: | FileCheck --check-prefixes=CHECK,CHECK-A64 %s
|
||||
// RUN: %clang_cc1 \
|
||||
// RUN: -triple armv8.6a-arm-none-eabi -target-feature +neon \
|
||||
// RUN: -target-feature +bf16 -mfloat-abi hard \
|
||||
// RUN: -disable-O0-optnone -emit-llvm -o - %s \
|
||||
// RUN: -disable-O0-optnone -emit-llvm -fno-legacy-pass-manager -o - %s \
|
||||
// RUN: | opt -S -mem2reg \
|
||||
// RUN: | FileCheck --check-prefixes=CHECK,CHECK-A32-HARDFP %s
|
||||
// RUN: %clang_cc1 \
|
||||
// RUN: -triple armv8.6a-arm-none-eabi -target-feature +neon \
|
||||
// RUN: -target-feature +bf16 -mfloat-abi softfp \
|
||||
// RUN: -disable-O0-optnone -emit-llvm -o - %s \
|
||||
// RUN: -disable-O0-optnone -emit-llvm -fno-legacy-pass-manager -o - %s \
|
||||
// RUN: | opt -S -mem2reg \
|
||||
// RUN: | FileCheck --check-prefixes=CHECK,CHECK-A32-SOFTFP %s
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
// NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py
|
||||
// RUN: %clang_cc1 -triple armv8-arm-none-eabi \
|
||||
// RUN: -target-feature +neon -target-feature +bf16 -mfloat-abi soft \
|
||||
// RUN: -disable-O0-optnone -S -emit-llvm -o - %s \
|
||||
// RUN: -disable-O0-optnone -S -emit-llvm -fno-legacy-pass-manager -o - %s \
|
||||
// RUN: | opt -S -mem2reg | FileCheck %s
|
||||
// RUN: %clang_cc1 -triple armv8-arm-none-eabi \
|
||||
// RUN: -target-feature +neon -target-feature +bf16 -mfloat-abi hard \
|
||||
// RUN: -disable-O0-optnone -S -emit-llvm -o - %s \
|
||||
// RUN: -disable-O0-optnone -S -emit-llvm -fno-legacy-pass-manager -o - %s \
|
||||
// RUN: | opt -S -mem2reg | FileCheck %s
|
||||
|
||||
#include <arm_neon.h>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
// NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py
|
||||
// RUN: %clang_cc1 -triple armv8.6a-arm-none-eabi -target-feature +neon -target-feature +bf16 -mfloat-abi hard \
|
||||
// RUN: -disable-O0-optnone -emit-llvm %s -o - | opt -S -mem2reg | FileCheck %s
|
||||
// RUN: -disable-O0-optnone -emit-llvm -fno-legacy-pass-manager %s -o - | opt -S -mem2reg | FileCheck %s
|
||||
// RUN: %clang_cc1 -triple armv8.6a-arm-none-eabi -target-feature +neon -target-feature +bf16 -mfloat-abi soft \
|
||||
// RUN: -disable-O0-optnone -emit-llvm %s -o - | opt -S -mem2reg | FileCheck %s
|
||||
// RUN: -disable-O0-optnone -emit-llvm -fno-legacy-pass-manager %s -o - | opt -S -mem2reg | FileCheck %s
|
||||
|
||||
#include <arm_neon.h>
|
||||
|
||||
|
|
Loading…
Reference in New Issue