diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2019-09-13 05:29:16 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2019-09-13 05:29:16 +0000 |
| commit | 804e0c507da4065326a88d4966115c55e0920dc8 (patch) | |
| tree | fa7a8dc96f119a3cc0f6333955be110be8310755 | |
| parent | 4d1df2aa2380966e170b637bcc958e162f7c4fe0 (diff) | |
| download | bcm5719-llvm-804e0c507da4065326a88d4966115c55e0920dc8.tar.gz bcm5719-llvm-804e0c507da4065326a88d4966115c55e0920dc8.zip | |
Fix interaction between r371813 and r371814.
llvm-svn: 371816
| -rw-r--r-- | clang/test/CodeGen/builtins-ppc-altivec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGen/builtins-ppc-altivec.c b/clang/test/CodeGen/builtins-ppc-altivec.c index d53011b37d4..6aebbc29247 100644 --- a/clang/test/CodeGen/builtins-ppc-altivec.c +++ b/clang/test/CodeGen/builtins-ppc-altivec.c @@ -1,10 +1,10 @@ // REQUIRES: powerpc-registered-target // RUN: %clang_cc1 -target-feature +altivec -triple powerpc-unknown-unknown -emit-llvm %s \ -// RUN: -flax-vector-conversions=none -o - | FileCheck %s +// RUN: -fno-lax-vector-conversions -o - | FileCheck %s // RUN: %clang_cc1 -target-feature +altivec -triple powerpc64-unknown-unknown -emit-llvm %s \ -// RUN: -flax-vector-conversions=none -o - | FileCheck %s +// RUN: -fno-lax-vector-conversions -o - | FileCheck %s // RUN: %clang_cc1 -target-feature +altivec -triple powerpc64le-unknown-unknown -emit-llvm %s \ -// RUN: -flax-vector-conversions=none -o - | FileCheck %s -check-prefix=CHECK-LE +// RUN: -fno-lax-vector-conversions -o - | FileCheck %s -check-prefix=CHECK-LE // RUN: not %clang_cc1 -triple powerpc64le-unknown-unknown -emit-llvm %s \ // RUN: -ferror-limit 0 -DNO_ALTIVEC -o - 2>&1 \ // RUN: | FileCheck %s -check-prefix=CHECK-NOALTIVEC |

