forked from OSchip/llvm-project
[OpenMP] Add triple to run lines to avoid message differences
Diagnostics with function types can show calling conventions on some platforms. Just choose one to prevent that.
This commit is contained in:
parent
177a703710
commit
72c373644f
|
@ -1,8 +1,8 @@
|
|||
// RUN: %clang_cc1 -verify -fopenmp -fopenmp-version=51 -DOMP51 -std=c++11 -o - %s
|
||||
// RUN: %clang_cc1 -verify -fopenmp -fopenmp-version=51 -DOMP51 -std=c++11 \
|
||||
// RUN: %clang_cc1 -verify -triple x86_64-unknown-linux -fopenmp -fopenmp-version=51 -DOMP51 -std=c++11 -o - %s
|
||||
// RUN: %clang_cc1 -verify -triple x86_64-unknown-linux -fopenmp -fopenmp-version=51 -DOMP51 -std=c++11 \
|
||||
// RUN: -DNO_INTEROP_T_DEF -o - %s
|
||||
// RUN: %clang_cc1 -verify -fopenmp -fopenmp-version=50 -DOMP50 -std=c++11 -o - %s
|
||||
// RUN: %clang_cc1 -verify -fopenmp -fopenmp-version=51 -DOMP51 -DC -x c -o - %s
|
||||
// RUN: %clang_cc1 -verify -triple x86_64-unknown-linux -fopenmp -fopenmp-version=50 -DOMP50 -std=c++11 -o - %s
|
||||
// RUN: %clang_cc1 -verify -triple x86_64-unknown-linux -fopenmp -fopenmp-version=51 -DOMP51 -DC -x c -o - %s
|
||||
|
||||
#ifdef NO_INTEROP_T_DEF
|
||||
void foo_v1(float *, void *);
|
||||
|
|
Loading…
Reference in New Issue