From: David Spickett Date: Fri, 6 Nov 2020 10:59:16 +0000 (+0000) Subject: [Clang][AArch64] Remove unused prefix in constrained rounding test X-Git-Tag: llvmorg-13-init~6870 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aecd52b97bb457aaecb0bcb658e6ea684e869de9;p=platform%2Fupstream%2Fllvm.git [Clang][AArch64] Remove unused prefix in constrained rounding test This test was added in 7f38812d5b7e0fd5145e44d5ae831a67d782dca6 and all the other tests make use of the COMMONIR check. So I think this was left in by mistake for this particular test. Reviewed By: kpn Differential Revision: https://reviews.llvm.org/D90921 --- diff --git a/clang/test/CodeGen/arm64-vrnd-constrained.c b/clang/test/CodeGen/arm64-vrnd-constrained.c index ee2edbc..bcd2aff 100644 --- a/clang/test/CodeGen/arm64-vrnd-constrained.c +++ b/clang/test/CodeGen/arm64-vrnd-constrained.c @@ -1,7 +1,7 @@ // RUN: %clang_cc1 -triple arm64-apple-ios7 -target-feature +neon -ffreestanding -flax-vector-conversions=none -emit-llvm -o - %s \ -// RUN: | FileCheck --check-prefix=COMMON --check-prefix=COMMONIR --check-prefix=UNCONSTRAINED %s +// RUN: | FileCheck --check-prefix=COMMON --check-prefix=UNCONSTRAINED %s // RUN: %clang_cc1 -triple arm64-apple-ios7 -target-feature +neon -ffreestanding -flax-vector-conversions=none -fexperimental-strict-floating-point -ffp-exception-behavior=strict -emit-llvm -o - %s \ -// RUN: | FileCheck --check-prefix=COMMON --check-prefix=COMMONIR --check-prefix=CONSTRAINED %s +// RUN: | FileCheck --check-prefix=COMMON --check-prefix=CONSTRAINED %s // RUN: %clang_cc1 -triple arm64-apple-ios7 -target-feature +neon -ffreestanding -flax-vector-conversions=none -emit-llvm -o - %s | llc -o=- - \ // RUN: | FileCheck --check-prefix=COMMON --check-prefix=CHECK-ASM %s // RUN: %clang_cc1 -triple arm64-apple-ios7 -target-feature +neon -ffreestanding -flax-vector-conversions=none -fexperimental-strict-floating-point -ffp-exception-behavior=strict -emit-llvm -o - %s | llc -o=- - \