
As we are now Sema-complete for OpenACC 3.4 (and thus have a conforming implementation, in all modes), we can now set the _OPENACC macro correctly. Additionally, we remove the temporary 'override' functionality, which was intended to allow people to experiment with this. We aren't having a deprecation period as OpenACC support is still considered experimental.
10 lines
252 B
C
10 lines
252 B
C
// RUN: %clang_cc1 -E -fopenacc %s | FileCheck %s --check-prefix=DEFAULT
|
|
|
|
// DEFAULT: OpenACC:202506:
|
|
OpenACC:_OPENACC:
|
|
|
|
// RUN: %clang_cc1 -E -dM -fopenacc %s | FileCheck %s --check-prefix=MACRO_PRINT_DEF
|
|
// MACRO_PRINT_DEF: #define _OPENACC 202506
|
|
|
|
|