mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 22:00:10 +00:00
[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. llvm-svn: 359193
This commit is contained in:
parent
c0838af754
commit
8b17621040
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user