You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
467 B
18 lines
467 B
// RUN: %clang_cc1 -fopenmp -verify -DFOPENMP -o - %s
|
|
// RUN: %clang_cc1 -verify -o - %s
|
|
// expected-no-diagnostics
|
|
#ifdef FOPENMP
|
|
// -fopenmp option is specified
|
|
#ifndef _OPENMP
|
|
#error "No _OPENMP macro is defined with -fopenmp option"
|
|
#elsif _OPENMP != 201107
|
|
#error "_OPENMP has incorrect value"
|
|
#endif //_OPENMP
|
|
#else
|
|
// No -fopenmp option is specified
|
|
#ifdef _OPENMP
|
|
#error "_OPENMP macro is defined without -fopenmp option"
|
|
#endif // _OPENMP
|
|
#endif // FOPENMP
|
|
|