diff options
author | Johannes Doerfert <jdoerfert@anl.gov> | 2019-01-19 09:40:10 +0000 |
---|---|---|
committer | Johannes Doerfert <jdoerfert@anl.gov> | 2019-01-19 09:40:10 +0000 |
commit | 7c31f455afc04e28df002839ad66614895e76ec7 (patch) | |
tree | 51185a1c577bb4c29102f91bdbf8a4bc9a953045 /clang/test/CodeGen/callback_pthread_create.c | |
parent | 14b1a6ad4c61727ce154ecc3e77e707a4900fcb0 (diff) | |
download | bcm5719-llvm-7c31f455afc04e28df002839ad66614895e76ec7.tar.gz bcm5719-llvm-7c31f455afc04e28df002839ad66614895e76ec7.zip |
[FIX] Restrict callback pthreads_create test to linux only
llvm-svn: 351643
Diffstat (limited to 'clang/test/CodeGen/callback_pthread_create.c')
-rw-r--r-- | clang/test/CodeGen/callback_pthread_create.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/test/CodeGen/callback_pthread_create.c b/clang/test/CodeGen/callback_pthread_create.c index 7184f82ca34..fdcbe973c41 100644 --- a/clang/test/CodeGen/callback_pthread_create.c +++ b/clang/test/CodeGen/callback_pthread_create.c @@ -1,6 +1,9 @@ // RUN: %clang -O1 %s -S -c -emit-llvm -o - | FileCheck %s // RUN: %clang -O1 %s -S -c -emit-llvm -o - | opt -ipconstprop -S | FileCheck --check-prefix=IPCP %s +// This is a linux only test for now due to the include. +// UNSUPPORTED: !linux + // CHECK: declare !callback ![[cid:[0-9]+]] {{.*}}i32 @pthread_create // CHECK: ![[cid]] = !{![[cidb:[0-9]+]]} // CHECK: ![[cidb]] = !{i64 2, i64 3, i1 false} |