diff options
author | Hans Wennborg <hans@hanshq.net> | 2015-01-22 00:45:20 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2015-01-22 00:45:20 +0000 |
commit | 9cf7122ff75017ce747a391931f18e54fd7935dc (patch) | |
tree | ce8b7d9e24bf818446cabafd65202590088a8acb | |
parent | 03176d781f32d265cf3333af6abb22577c160f12 (diff) | |
download | bcm5719-llvm-9cf7122ff75017ce747a391931f18e54fd7935dc.tar.gz bcm5719-llvm-9cf7122ff75017ce747a391931f18e54fd7935dc.zip |
Fix compiler_builtins.m test to not rely on including system stdlib.h and malloc.h
Importing _Builtin_intrinsics.sse and avx would transitively pull in those
headers, and the test would fail when building in an environment where
they were not available on the include path.
This fixes PR20995 for me.
Differential Revision: http://reviews.llvm.org/D7112
llvm-svn: 226754
-rw-r--r-- | clang/test/Modules/Inputs/System/usr/include/malloc.h | 0 | ||||
-rw-r--r-- | clang/test/Modules/Inputs/System/usr/include/stdlib.h | 1 | ||||
-rw-r--r-- | clang/test/Modules/compiler_builtins.m | 4 |
3 files changed, 3 insertions, 2 deletions
diff --git a/clang/test/Modules/Inputs/System/usr/include/malloc.h b/clang/test/Modules/Inputs/System/usr/include/malloc.h new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/clang/test/Modules/Inputs/System/usr/include/malloc.h diff --git a/clang/test/Modules/Inputs/System/usr/include/stdlib.h b/clang/test/Modules/Inputs/System/usr/include/stdlib.h new file mode 100644 index 00000000000..a1bf1a8b294 --- /dev/null +++ b/clang/test/Modules/Inputs/System/usr/include/stdlib.h @@ -0,0 +1 @@ +typedef __SIZE_TYPE__ size_t; diff --git a/clang/test/Modules/compiler_builtins.m b/clang/test/Modules/compiler_builtins.m index 4b8cb5bdc5d..f120bcfd982 100644 --- a/clang/test/Modules/compiler_builtins.m +++ b/clang/test/Modules/compiler_builtins.m @@ -1,6 +1,6 @@ // RUN: rm -rf %t -// RUN: %clang -fsyntax-only -fmodules -fmodules-cache-path=%t -D__need_wint_t %s -Xclang -verify -// RUN: %clang -fsyntax-only -std=c99 -fmodules -fmodules-cache-path=%t -D__need_wint_t %s -Xclang -verify +// RUN: %clang -fsyntax-only -fmodules -fmodules-cache-path=%t -D__need_wint_t %s -I%S/Inputs/System/usr/include -Xclang -verify +// RUN: %clang -fsyntax-only -std=c99 -fmodules -fmodules-cache-path=%t -D__need_wint_t %s -I%S/Inputs/System/usr/include -Xclang -verify // expected-no-diagnostics #ifdef __SSE__ |