summaryrefslogtreecommitdiff
path: root/test/OpenMP/declare_simd_aarch64_sve.c
diff options
context:
space:
mode:
authorAlexey Bataev <a.bataev@hotmail.com>2019-04-25 14:04:37 +0000
committerAlexey Bataev <a.bataev@hotmail.com>2019-04-25 14:04:37 +0000
commit9981cdc9924fb8b614e60aef543372a47d12699e (patch)
tree6eaa8b130ef4fe6ffd680f810550ccd1eb505fe5 /test/OpenMP/declare_simd_aarch64_sve.c
parentb49771998876cbb356bcbf39f518d2dafdb5b76b (diff)
downloadclang-9981cdc9924fb8b614e60aef543372a47d12699e.tar.gz
[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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@359193 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/OpenMP/declare_simd_aarch64_sve.c')
-rw-r--r--test/OpenMP/declare_simd_aarch64_sve.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/OpenMP/declare_simd_aarch64_sve.c b/test/OpenMP/declare_simd_aarch64_sve.c
index 6c5dcead83..82f85c413b 100644
--- a/test/OpenMP/declare_simd_aarch64_sve.c
+++ b/test/OpenMP/declare_simd_aarch64_sve.c
@@ -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);
}