From 9cf7122ff75017ce747a391931f18e54fd7935dc Mon Sep 17 00:00:00 2001 From: Hans Wennborg Date: Thu, 22 Jan 2015 00:45:20 +0000 Subject: 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 --- clang/test/Modules/Inputs/System/usr/include/stdlib.h | 1 + 1 file changed, 1 insertion(+) create mode 100644 clang/test/Modules/Inputs/System/usr/include/stdlib.h (limited to 'clang/test/Modules/Inputs/System/usr/include/stdlib.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; -- cgit v1.2.3