Correct the definition of ObjC's BOOL in our pre-canned set of defines. It's supposed to

be "signed char" not "int".

<rdar://problem/13131126>

llvm-svn: 174209
This commit is contained in:
Jim Ingham 2013-02-01 19:33:52 +00:00
parent 8114a7a651
commit 95a777e915
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ static const char *global_defines =
"#define nil ((id)0) \n"
"#define YES ((BOOL)1) \n"
"#define NO ((BOOL)0) \n"
"typedef int BOOL; \n"
"typedef signed char BOOL; \n"
"typedef signed __INT8_TYPE__ int8_t;\n"
"typedef unsigned __INT8_TYPE__ uint8_t;\n"
"typedef signed __INT16_TYPE__ int16_t;\n"