From ae0cb256078e9230a0f3c15360b32cde6e74b4ba Mon Sep 17 00:00:00 2001 From: Krzysztof Parzyszek Date: Fri, 13 Jul 2018 21:32:33 +0000 Subject: [PATCH] [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 --- test/CodeGen/builtins-hvx128.c | 2 +- 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))); -- 2.40.0