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