r337049 - [Hexagon] Fix hvx-length feature name in testcases

Krzysztof Parzyszek via cfe-commits cfe-commits at lists.llvm.org
Fri Jul 13 14:32:33 PDT 2018


Author: kparzysz
Date: Fri Jul 13 14:32:33 2018
New Revision: 337049

URL: http://llvm.org/viewvc/llvm-project?rev=337049&view=rev
Log:
[Hexagon] Fix hvx-length feature name in testcases

Modified:
    cfe/trunk/test/CodeGen/builtins-hvx128.c
    cfe/trunk/test/CodeGen/builtins-hvx64.c

Modified: cfe/trunk/test/CodeGen/builtins-hvx128.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/builtins-hvx128.c?rev=337049&r1=337048&r2=337049&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/builtins-hvx128.c (original)
+++ cfe/trunk/test/CodeGen/builtins-hvx128.c Fri Jul 13 14:32:33 2018
@@ -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)));

Modified: cfe/trunk/test/CodeGen/builtins-hvx64.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/builtins-hvx64.c?rev=337049&r1=337048&r2=337049&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/builtins-hvx64.c (original)
+++ cfe/trunk/test/CodeGen/builtins-hvx64.c Fri Jul 13 14:32:33 2018
@@ -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)));




More information about the cfe-commits mailing list