From 94effad4c71e4b25b7d56e6392526a55e3a989e7 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Wed, 17 Apr 2013 21:11:07 +0000 Subject: [PATCH] [tests] Only include stdint.h if we are in freestanding mode. - We shouldn't even try to include stdint.h in hosted mode, as the dependency on even parsing a platforms stdint.h might fail for some targets. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@179723 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Headers/c11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Headers/c11.c b/test/Headers/c11.c index ebe2123a2f..21f2e4f222 100644 --- a/test/Headers/c11.c +++ b/test/Headers/c11.c @@ -21,12 +21,12 @@ _Static_assert(__alignof(c) == 4, ""); #define __STDC_WANT_LIB_EXT1__ 1 #include -#include rsize_t x = 0; // If we are freestanding, then also check RSIZE_MAX (in a hosted implementation // we will use the host stdint.h, which may not yet have C11 support). #ifndef __STDC_HOSTED__ +#include rsize_t x2 = RSIZE_MAX; #endif -- 2.40.0