From: Krzysztof Parzyszek Date: Fri, 13 Jul 2018 21:32:33 +0000 (+0000) Subject: [Hexagon] Fix hvx-length feature name in testcases X-Git-Tag: llvmorg-7.0.0-rc1~1475 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d66941fab9b562296e956274bf225ade97e7b3de;p=platform%2Fupstream%2Fllvm.git [Hexagon] Fix hvx-length feature name in testcases llvm-svn: 337049 --- diff --git a/clang/test/CodeGen/builtins-hvx128.c b/clang/test/CodeGen/builtins-hvx128.c index c482d7b..07d0e05 100644 --- a/clang/test/CodeGen/builtins-hvx128.c +++ b/clang/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/clang/test/CodeGen/builtins-hvx64.c b/clang/test/CodeGen/builtins-hvx64.c index 5f0d301..5a53296 100644 --- a/clang/test/CodeGen/builtins-hvx64.c +++ b/clang/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)));