mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 13:50:11 +00:00
8026394d3c
Summary: omp.h header file defines omp_null_allocator as a predefined allocator, need to consider it also as a predefined allocator. Reviewers: jdoerfert Subscribers: jholewinski, yaxunl, guansong, cfe-commits, caomhin Tags: #clang Differential Revision: https://reviews.llvm.org/D79186
48 lines
1.7 KiB
C++
48 lines
1.7 KiB
C++
// no PCH
|
|
// RUN: %clang_cc1 -fopenmp -fnoopenmp-use-tls -ast-print -include %s -include %s %s -o - | FileCheck %s
|
|
// with PCH
|
|
// RUN: %clang_cc1 -fopenmp -fnoopenmp-use-tls -ast-print -chain-include %s -chain-include %s %s -o - | FileCheck %s
|
|
// no PCH
|
|
// RUN: %clang_cc1 -fopenmp -ast-print -include %s -include %s %s -o - | FileCheck %s -check-prefix=CHECK-ALLOC-1
|
|
// RUN: %clang_cc1 -fopenmp -ast-print -include %s -include %s %s -o - | FileCheck %s -check-prefix=CHECK-ALLOC-2
|
|
// with PCH
|
|
// RUN: %clang_cc1 -fopenmp -ast-print -chain-include %s -chain-include %s %s -o - | FileCheck %s -check-prefix=CHECK-ALLOC-1
|
|
// RUN: %clang_cc1 -fopenmp -ast-print -chain-include %s -chain-include %s %s -o - | FileCheck %s -check-prefix=CHECK-ALLOC-2
|
|
|
|
#if !defined(PASS1)
|
|
#define PASS1
|
|
|
|
typedef void **omp_allocator_handle_t;
|
|
extern const omp_allocator_handle_t omp_null_allocator;
|
|
extern const omp_allocator_handle_t omp_default_mem_alloc;
|
|
extern const omp_allocator_handle_t omp_large_cap_mem_alloc;
|
|
extern const omp_allocator_handle_t omp_const_mem_alloc;
|
|
extern const omp_allocator_handle_t omp_high_bw_mem_alloc;
|
|
extern const omp_allocator_handle_t omp_low_lat_mem_alloc;
|
|
extern const omp_allocator_handle_t omp_cgroup_mem_alloc;
|
|
extern const omp_allocator_handle_t omp_pteam_mem_alloc;
|
|
extern const omp_allocator_handle_t omp_thread_mem_alloc;
|
|
|
|
int a;
|
|
// CHECK: int a;
|
|
|
|
#elif !defined(PASS2)
|
|
#define PASS2
|
|
|
|
#pragma omp allocate(a) allocator(omp_default_mem_alloc)
|
|
// CHECK: #pragma omp allocate(a) allocator(omp_default_mem_alloc)
|
|
|
|
#else
|
|
|
|
// CHECK-LABEL: foo
|
|
// CHECK-ALLOC-LABEL: foo
|
|
int foo() {
|
|
return a;
|
|
// CHECK: return a;
|
|
// CHECK-ALLOC-1: return a;
|
|
}
|
|
|
|
// CHECK-ALLOC-2: return a;
|
|
|
|
#endif
|