[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.

llvm-svn: 179723
This commit is contained in:
Daniel Dunbar 2013-04-17 21:11:07 +00:00
parent 799a4036da
commit 893f3d54d9
1 changed files with 1 additions and 1 deletions

View File

@ -21,12 +21,12 @@ _Static_assert(__alignof(c) == 4, "");
#define __STDC_WANT_LIB_EXT1__ 1
#include <stddef.h>
#include <stdint.h>
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 <stdint.h>
rsize_t x2 = RSIZE_MAX;
#endif