| Age | Commit message (Expand) | Author |
| 2010-01-10 | add comment to test. | Chris Lattner |
| 2010-01-10 | implement rdar://7520940: published framework headers should | Chris Lattner |
| 2009-12-21 | ARM: Honor -mfpu= and set __VFP_FP__ and __ARM_NEON__ "correctly". | Daniel Dunbar |
| 2009-12-20 | a really old testcase I apparently forgot to 'svn add'. | Chris Lattner |
| 2009-12-18 | ARM: Fix predefines (__ARM_ARCH_..., __REGISTER_PREFIX). | Daniel Dunbar |
| 2009-12-15 | Update tests to use %clang instead of 'clang', and forcibly disable use of ' | Daniel Dunbar |
| 2009-12-15 | Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. | Daniel Dunbar |
| 2009-12-14 | Make tests use the new clang -cc1 flag. | Fariborz Jahanian |
| 2009-12-14 | this was a couple bugzillas too | Chris Lattner |
| 2009-12-14 | fix rdar://7466570 - Be more bug compatible with GCC when it comes to | Chris Lattner |
| 2009-12-14 | filecheckize | Chris Lattner |
| 2009-12-09 | Improve test portability; I can't figure out how to get the regexp library to | Daniel Dunbar |
| 2009-12-08 | Don't use MS extensions in this test, we expect header include markers. | Daniel Dunbar |
| 2009-12-07 | fix -dM with variadic macros, PR5699 | Chris Lattner |
| 2009-12-07 | rename names for consistency | Chris Lattner |
| 2009-12-07 | filecheckize | Chris Lattner |
| 2009-12-06 | Drop Preprocessor/open-failure test, it breaks running the test suite as root, | Daniel Dunbar |
| 2009-12-06 | Unbreak and add test case for r90276, a situation in which getBuffer is expec... | Daniel Dunbar |
| 2009-11-30 | Use '-FOO' 'BAR' instead of '-FOO=BAR' in tests. | Daniel Dunbar |
| 2009-11-29 | Normalize options to use '-FOO' instead of '--FOO'. | Daniel Dunbar |
| 2009-11-29 | Use '-x' 'foo' instead of '-x=foo'. | Daniel Dunbar |
| 2009-11-29 | Remove unnecessary -fms-extensions=0 from tests (this command line syntax is ... | Daniel Dunbar |
| 2009-11-29 | clang-cc: Change -fsigned-char=0 to -fno-unsigned-char and pass -pic-level us... | Daniel Dunbar |
| 2009-11-22 | Define __SIG_ATOMIC_WIDTH__ for use in stdint.h. | Ken Dyck |
| 2009-11-20 | Avoid unwanted expansion in macros that paste together INT<n>_C(v) and | Ken Dyck |
| 2009-11-20 | Avoid unwanted expansion in macros that paste together INT<n>_MIN, INT<n>_MAX, | Ken Dyck |
| 2009-11-20 | Avoid unwanted macro expansion in macros that paste together int<n>_t and | Ken Dyck |
| 2009-11-19 | Define __WCHAR_WIDTH__ for use in stdint.h. | Ken Dyck |
| 2009-11-19 | Parameterize WINT_MIN and WINT_MAX with __WINT_WIDTH__ to support arbitrary | Ken Dyck |
| 2009-11-19 | Add __WINT_WIDTH__ to paramaterize the limits of WINT_MIN and WINT_MAX in | Ken Dyck |
| 2009-11-19 | Add __SIZE_WIDTH__ to eventually replace __SIZE_TYPE__ in stdint.h. | Ken Dyck |
| 2009-11-19 | Restore __INTMAX_TYPE__, __UINTMAX_TYPE__, __PTRDIFF_TYPE__, and | Ken Dyck |
| 2009-11-19 | Remove __PTRDIFF_TYPE__ as it is no longer needed by stdint.h. It has been | Ken Dyck |
| 2009-11-19 | Add __PTRDIFF_WIDTH__ macro to eventually replace __PTRDIFF_TYPE__ in stdint.h. | Ken Dyck |
| 2009-11-19 | Remove __INTPTR_TYPE__ as it is no longer needed by stdint.h, which uses | Ken Dyck |
| 2009-11-18 | Define intptr_t and uintptr_t in terms of their equivalent exact-width types. | Ken Dyck |
| 2009-11-18 | Predefine __INTPTR_WIDTH__ for future use in stdint.h. | Ken Dyck |
| 2009-11-18 | Remove the __INTMAX_TYPE__ and __UINTMAX_TYPE__ built-in macros as they are no | Ken Dyck |
| 2009-11-18 | Define INTMAX_C and UINTMAX_C in terms of the corresponding exact-width | Ken Dyck |
| 2009-11-18 | Define INTMAX_MIN, INTMAX_MAX, and UINTMAX_MAX in terms of the limit macros for | Ken Dyck |
| 2009-11-18 | Define intmax_t and uintmax_t as the [u]intN_t type corresponding to | Ken Dyck |
| 2009-11-18 | Predefine __INTMAX_WIDTH__ for the future parameterization of INTMAX macros in | Ken Dyck |
| 2009-11-17 | Replace (-INT8_C(128)), which uses an illegally out-of-range argument for | Ken Dyck |
| 2009-11-17 | Use the INTn_C integer constant macros to generate limit constants with correct | Ken Dyck |
| 2009-11-17 | Remove unnecessary parens around the bodies of integer constant macros. C99 | Ken Dyck |
| 2009-11-17 | Don't #include <stdio.h> when tests don't need it, or use clang instead of cl... | Daniel Dunbar |
| 2009-11-17 | Move -fnext-runtime defaulting to driver (and change clang-cc default to | Daniel Dunbar |
| 2009-11-17 | Move char-is-signed defaulting to driver, instead of using | Daniel Dunbar |
| 2009-11-16 | Parameterize the constant-generating macros in stdint.h with new built-in | Ken Dyck |
| 2009-11-12 | Generalize stdint.h for non-8-bit-multiple types, patch by | Chris Lattner |