1. a91320b ARM: Honor -mfpu= and set __VFP_FP__ and __ARM_NEON__ "correctly". by Daniel Dunbar · 15 years ago
  2. 5796df9 a really old testcase I apparently forgot to 'svn add'. by Chris Lattner · 15 years ago
  3. eac7c53 ARM: Fix predefines (__ARM_ARCH_..., __REGISTER_PREFIX). by Daniel Dunbar · 15 years ago
  4. 80737ad Update tests to use %clang instead of 'clang', and forcibly disable use of ' by Daniel Dunbar · 15 years ago
  5. a572887 Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. by Daniel Dunbar · 15 years ago
  6. 01ed063 Make tests use the new clang -cc1 flag. by Fariborz Jahanian · 15 years ago
  7. 83d4c96 this was a couple bugzillas too by Chris Lattner · 15 years ago
  8. a3e008a fix rdar://7466570 - Be more bug compatible with GCC when it comes to by Chris Lattner · 15 years ago
  9. 0dcfbc5 filecheckize by Chris Lattner · 15 years ago
  10. a498ca6 Improve test portability; I can't figure out how to get the regexp library to by Daniel Dunbar · 15 years ago
  11. 6882239 Don't use MS extensions in this test, we expect header include markers. by Daniel Dunbar · 15 years ago
  12. 807b93e fix -dM with variadic macros, PR5699 by Chris Lattner · 15 years ago
  13. 5146b1b rename names for consistency by Chris Lattner · 15 years ago
  14. 9944f78 filecheckize by Chris Lattner · 15 years ago
  15. 30bd7a0 Drop Preprocessor/open-failure test, it breaks running the test suite as root, by Daniel Dunbar · 15 years ago
  16. 2ffb14f Unbreak and add test case for r90276, a situation in which getBuffer is expected to fail. by Daniel Dunbar · 15 years ago
  17. 78d5590 Use '-FOO' 'BAR' instead of '-FOO=BAR' in tests. by Daniel Dunbar · 15 years ago
  18. 8a90ac0 Normalize options to use '-FOO' instead of '--FOO'. by Daniel Dunbar · 15 years ago
  19. 682899d Use '-x' 'foo' instead of '-x=foo'. by Daniel Dunbar · 15 years ago
  20. a75a92d Remove unnecessary -fms-extensions=0 from tests (this command line syntax is going away). by Daniel Dunbar · 15 years ago
  21. 7674352 clang-cc: Change -fsigned-char=0 to -fno-unsigned-char and pass -pic-level using separate args. by Daniel Dunbar · 15 years ago
  22. 3e945c8 Define __SIG_ATOMIC_WIDTH__ for use in stdint.h. by Ken Dyck · 15 years ago
  23. fdb4324 Avoid unwanted expansion in macros that paste together INT<n>_C(v) and by Ken Dyck · 15 years ago
  24. a2e9284 Avoid unwanted expansion in macros that paste together INT<n>_MIN, INT<n>_MAX, by Ken Dyck · 15 years ago
  25. aface1b Avoid unwanted macro expansion in macros that paste together int<n>_t and by Ken Dyck · 15 years ago
  26. 63e6561 Define __WCHAR_WIDTH__ for use in stdint.h. by Ken Dyck · 15 years ago
  27. bfec4b0 Parameterize WINT_MIN and WINT_MAX with __WINT_WIDTH__ to support arbitrary by Ken Dyck · 15 years ago
  28. 7635d21 Add __WINT_WIDTH__ to paramaterize the limits of WINT_MIN and WINT_MAX in by Ken Dyck · 15 years ago
  29. 7484e5d Add __SIZE_WIDTH__ to eventually replace __SIZE_TYPE__ in stdint.h. by Ken Dyck · 15 years ago
  30. 8241d73 Restore __INTMAX_TYPE__, __UINTMAX_TYPE__, __PTRDIFF_TYPE__, and by Ken Dyck · 15 years ago
  31. cf2f71f Remove __PTRDIFF_TYPE__ as it is no longer needed by stdint.h. It has been by Ken Dyck · 15 years ago
  32. d00c751 Add __PTRDIFF_WIDTH__ macro to eventually replace __PTRDIFF_TYPE__ in stdint.h. by Ken Dyck · 15 years ago
  33. ed116e9 Remove __INTPTR_TYPE__ as it is no longer needed by stdint.h, which uses by Ken Dyck · 15 years ago
  34. 08321b4 Define intptr_t and uintptr_t in terms of their equivalent exact-width types. by Ken Dyck · 15 years ago
  35. d896e1a Predefine __INTPTR_WIDTH__ for future use in stdint.h. by Ken Dyck · 15 years ago
  36. eec59a7 Remove the __INTMAX_TYPE__ and __UINTMAX_TYPE__ built-in macros as they are no by Ken Dyck · 15 years ago
  37. 832b710 Define INTMAX_C and UINTMAX_C in terms of the corresponding exact-width by Ken Dyck · 15 years ago
  38. db57ce5 Define INTMAX_MIN, INTMAX_MAX, and UINTMAX_MAX in terms of the limit macros for by Ken Dyck · 15 years ago
  39. 36fac07 Define intmax_t and uintmax_t as the [u]intN_t type corresponding to by Ken Dyck · 15 years ago
  40. 186696b Predefine __INTMAX_WIDTH__ for the future parameterization of INTMAX macros in by Ken Dyck · 15 years ago
  41. b088756 Replace (-INT8_C(128)), which uses an illegally out-of-range argument for by Ken Dyck · 15 years ago
  42. 8163841 Use the INTn_C integer constant macros to generate limit constants with correct by Ken Dyck · 15 years ago
  43. 6ab25f4 Remove unnecessary parens around the bodies of integer constant macros. C99 by Ken Dyck · 15 years ago
  44. 23afaad Don't #include <stdio.h> when tests don't need it, or use clang instead of clang-cc when they do. by Daniel Dunbar · 15 years ago
  45. c5a97ec Move -fnext-runtime defaulting to driver (and change clang-cc default to by Daniel Dunbar · 15 years ago
  46. 1f95e65 Move char-is-signed defaulting to driver, instead of using by Daniel Dunbar · 15 years ago
  47. eef22ef Parameterize the constant-generating macros in stdint.h with new built-in by Ken Dyck · 15 years ago
  48. dcdd2a0 Generalize stdint.h for non-8-bit-multiple types, patch by Ken Dyck! by Chris Lattner · 15 years ago
  49. 9184646 do not store wchar/char16/char32/intmax width/alignment info by Chris Lattner · 15 years ago
  50. 2475d76 Remove RUN: true lines. by Daniel Dunbar · 15 years ago
  51. 4fcfde4 Eliminate &&s in tests. by Daniel Dunbar · 15 years ago
  52. 9099e7b clean up integer preprocessor type definitions, patch by Ken Dyck! by Chris Lattner · 15 years ago
  53. 06dcf6b A simple reordering of the definitions in stdint.h and by Chris Lattner · 15 years ago
  54. e6113de Implement support for the -undef command line option, patch by by Chris Lattner · 15 years ago
  55. 9617a78 Fixed for running on Windows. by John Thompson · 15 years ago
  56. 92bd8c7 Added __has_include and __has_include_next. by John Thompson · 15 years ago
  57. bceaf86 add two new and very exhaustive preprocessor tests, patch by Ken Dyck! by Chris Lattner · 15 years ago
  58. b3eca29 Disabling some MS extensions which cause these tests to fail by John Thompson · 15 years ago
  59. 8121ecd fix tests by Nuno Lopes · 15 years ago
  60. 9a4c105 Typo in revision 85201. by Edward O'Callaghan · 15 years ago
  61. 9b0cffe Convert Preprocessor Clang tests to FileCheck in regards to PR5307. by Edward O'Callaghan · 15 years ago
  62. 86fb835 Fix a broken test in rev. 85199. by Edward O'Callaghan · 15 years ago
  63. b396a37 Convert Preprocessor Clang tests to FileCheck in regards to PR5307. by Edward O'Callaghan · 15 years ago
  64. 848b9b6 Preprocessor tests are whitespace sensitive, as per Revision: 85170 review. by Edward O'Callaghan · 15 years ago
  65. 70881df Convert a few tests to FileCheck for PR5307. by Edward O'Callaghan · 15 years ago
  66. 79162ce Disable Microsoft extensions to fix failure on Windows. by John Thompson · 15 years ago
  67. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  68. fe9dcb3 Force triple for this test (non-fragile ABI is default on x86_64-apple-darwin9). by Daniel Dunbar · 15 years ago
  69. cbf30b7 Added test cases for presence and absence of __has_feature(objc_nonfragile_abi) with and without -fobjc-nonfragile-abi. by David Chisnall · 15 years ago
  70. 025f80d MultiTestRunner: Validate '&&' at the end of RUN lines. by Daniel Dunbar · 15 years ago
  71. 04ae2df add push/pop semantics for diagnostics. Patch by Louis Gerbarg! by Chris Lattner · 15 years ago
  72. 6896a37 Fix #pragma GCC system_header by making it insert a virtual linemarker into by Chris Lattner · 15 years ago
  73. a81aae2 rename test by Chris Lattner · 15 years ago
  74. ea9ff8d convert this test to -verify mode. by Chris Lattner · 15 years ago
  75. 3ee211f Fix PR2741 by making our newline tracking be aware of newlines that by Chris Lattner · 15 years ago
  76. 1b63e4f Sink the BuiltinInfo object from ASTContext into the by Chris Lattner · 15 years ago
  77. 148772a implement and document a new __has_feature and __has_builtin magic by Chris Lattner · 15 years ago
  78. 3e753e2 PR4288: Make -dD (dump macros with preprocessed source) play nicely with by Eli Friedman · 15 years ago
  79. 2a1c363 PR4283: Don't truncate multibyte character constants in the preprocessor. by Eli Friedman · 15 years ago
  80. 8c0d8a2 update test for r72519 by Chris Lattner · 15 years ago
  81. cfcceab Make the bad paste diagnostic print the entire pasted token. by Eli Friedman · 15 years ago
  82. 3240469 Fix a couple of bugs: by Chris Lattner · 15 years ago
  83. c5b7e8d fix this test to fail when the patch isn't applied. by Chris Lattner · 15 years ago
  84. 4c3ba6c Make sure an invalid concatentaion doesn't insert whitespace before by Eli Friedman · 15 years ago
  85. c25d805 In assembler-with-cpp mode, don't error on '#' (stringize) operator applied to by Daniel Dunbar · 15 years ago
  86. 3265a42 PR3942: Don't warn on unsigned overflow in preprocessor expressions. by Eli Friedman · 15 years ago
  87. 766703b Fix rdar://6880630 - # in _Pragma does not start a preprocessor directive. by Chris Lattner · 15 years ago
  88. 6fd34f9 convert test to use -verify by Chris Lattner · 15 years ago
  89. 0a1a0ec rename test by Chris Lattner · 15 years ago
  90. 9fc9e77 When we expect two arguments but have zero, make sure to add by Chris Lattner · 15 years ago
  91. 3ac7904 Handle -march for the LLVM recognized cpu names. by Daniel Dunbar · 15 years ago
  92. 17ca363 More x86 target feature support. by Daniel Dunbar · 15 years ago
  93. 686a21b Fix the testcase for PR4132. by Eli Friedman · 15 years ago
  94. d9b856f Fix for PR4132: make sure to insert whitespace consistently before a by Eli Friedman · 15 years ago
  95. e5393fb PR4063, with feeling: Chain PP callbacks by default. by Daniel Dunbar · 15 years ago
  96. 0a70c64 PR4063: Fix dependency generation with -E. by Daniel Dunbar · 15 years ago
  97. eb32fde Simplify the scheme used for keywords, and change the classification by Eli Friedman · 15 years ago
  98. d0359af Change our silencing of C typedef redefinition handling to what we had by Chris Lattner · 15 years ago
  99. 04ad9b2 make -Wtypedef-redefinition an extwarn instead of defaulting by Chris Lattner · 15 years ago
  100. a864cf7 fix rdar://6816766 - Crash with function-like macro test at end of directive. by Chris Lattner · 15 years ago