r359193 - [OPENMP][AARCH64]Fix the test for declare simd, NFC.

Alexey Bataev via cfe-commits cfe-commits at lists.llvm.org
Thu Apr 25 07:04:38 PDT 2019


Author: abataev
Date: Thu Apr 25 07:04:37 2019
New Revision: 359193

URL: http://llvm.org/viewvc/llvm-project?rev=359193&view=rev
Log:
[OPENMP][AARCH64]Fix the test for declare simd, NFC.

Renamed function a01 in the test to fix possible problems with the git
hash match during testing.

Modified:
    cfe/trunk/test/OpenMP/declare_simd_aarch64_sve.c

Modified: cfe/trunk/test/OpenMP/declare_simd_aarch64_sve.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/OpenMP/declare_simd_aarch64_sve.c?rev=359193&r1=359192&r2=359193&view=diff
==============================================================================
--- cfe/trunk/test/OpenMP/declare_simd_aarch64_sve.c (original)
+++ cfe/trunk/test/OpenMP/declare_simd_aarch64_sve.c Thu Apr 25 07:04:37 2019
@@ -33,12 +33,12 @@ void foo_loop(double *x, float *y, int N
   // test integers
 
 #pragma omp declare simd notinbranch
-char a01(int x);
-// CHECK-DAG: _ZGVsMxv_a01
-// CHECK-NOT: a01
+char a01_fun(int x);
+// CHECK-DAG: _ZGVsMxv_a01_fun
+// CHECK-NOT: a01_fun
 
 static int *in;
 static char *out;
 void do_something() {
-  *out = a01(*in);
+  *out = a01_fun(*in);
 }




More information about the cfe-commits mailing list