diff options
author | Krzysztof Parzyszek <kparzysz@codeaurora.org> | 2018-07-13 21:32:33 +0000 |
---|---|---|
committer | Krzysztof Parzyszek <kparzysz@codeaurora.org> | 2018-07-13 21:32:33 +0000 |
commit | ae0cb256078e9230a0f3c15360b32cde6e74b4ba (patch) | |
tree | 80a6184a37987d2fa8e632a4019331c41eb7ab27 /test | |
parent | 2d34629f474b71d65adbb4e9e5f31ea00f64a4ec (diff) | |
download | clang-ae0cb256078e9230a0f3c15360b32cde6e74b4ba.tar.gz |
[Hexagon] Fix hvx-length feature name in testcases
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@337049 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/builtins-hvx128.c | 2 | ||||
-rw-r--r-- | test/CodeGen/builtins-hvx64.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/builtins-hvx128.c b/test/CodeGen/builtins-hvx128.c index c482d7bd35..07d0e050dd 100644 --- a/test/CodeGen/builtins-hvx128.c +++ b/test/CodeGen/builtins-hvx128.c @@ -1,5 +1,5 @@ // REQUIRES: hexagon-registered-target -// RUN: %clang_cc1 -triple hexagon-unknown-elf -target-cpu hexagonv65 -target-feature +hvxv65 -target-feature +hvx-length128 -emit-llvm %s -o - | FileCheck %s +// RUN: %clang_cc1 -triple hexagon-unknown-elf -target-cpu hexagonv65 -target-feature +hvxv65 -target-feature +hvx-length128b -emit-llvm %s -o - | FileCheck %s void test() { int v128 __attribute__((__vector_size__(128))); diff --git a/test/CodeGen/builtins-hvx64.c b/test/CodeGen/builtins-hvx64.c index 5f0d301040..5a53296e72 100644 --- a/test/CodeGen/builtins-hvx64.c +++ b/test/CodeGen/builtins-hvx64.c @@ -1,5 +1,5 @@ // REQUIRES: hexagon-registered-target -// RUN: %clang_cc1 -triple hexagon-unknown-elf -target-cpu hexagonv65 -target-feature +hvxv65 -target-feature +hvx-length64 -emit-llvm %s -o - | FileCheck %s +// RUN: %clang_cc1 -triple hexagon-unknown-elf -target-cpu hexagonv65 -target-feature +hvxv65 -target-feature +hvx-length64b -emit-llvm %s -o - | FileCheck %s void test() { int v64 __attribute__((__vector_size__(64))); |