1. 748dd20 Force triple for these tests. by Daniel Dunbar · 16 years ago
  2. fd10511 finish the implementation of -imacros. The driver still needs to be hooked up. by Chris Lattner · 16 years ago
  3. 3bbc753 More fixes to builtin preprocessor defines. by Daniel Dunbar · 16 years ago
  4. 9fd0b1f Set __PIC__ (more) correctly. by Daniel Dunbar · 16 years ago
  5. ef88e58 Fix broken test case. I have no idea why this ever worked. by Anders Carlsson · 16 years ago
  6. 82fc0cb Use %s in test, not hard coded name. by Daniel Dunbar · 16 years ago
  7. 0b51415 implement rdar://6762183. I'm not sure if it is more insane that by Chris Lattner · 16 years ago
  8. 4ca076f Define __OPTIMIZE__ and __OPTIMIZE_SIZE__ if the -O[12] and -Os flags are passed to the compiler. by Anders Carlsson · 16 years ago
  9. 0b5b0da Pull clang-cc code for generating PTH files based on the input type. by Daniel Dunbar · 16 years ago
  10. 4fcb4cd fix PR3880, fixing a comma swallowing bug handling macros that only take by Chris Lattner · 16 years ago
  11. d7d5f02 Rename clang to clang-cc. by Daniel Dunbar · 16 years ago
  12. f1538de The individual pieces of an invalid paste as still candidates for expansion. by Chris Lattner · 16 years ago
  13. 01c499d Fix include-pth.c test case to (hopefully) more resilient to where and how tests by Ted Kremenek · 16 years ago
  14. 600cfab Add test case for '-include-pth'. by Ted Kremenek · 16 years ago
  15. e966d9a add tests for the various .S bugs I fixed on wednesday. by Chris Lattner · 16 years ago
  16. 15154b4 rename this test from .S to .c so that it gets run. by Chris Lattner · 16 years ago
  17. 688a248 fix PR3764 - A redefinition of a pre-processor macro fails by Chris Lattner · 16 years ago
  18. c3c489e convert this to use -verify. by Chris Lattner · 16 years ago
  19. 5a7a848 rename test by Chris Lattner · 16 years ago
  20. b627c8d #import is not considered an extension for ObjC. by Chris Lattner · 16 years ago
  21. c8fbd44 fix PR3579: __LINE__ expands to the presumed location of the by Chris Lattner · 16 years ago
  22. e7fb484 track "just a little more" location information for macro instantiations. by Chris Lattner · 16 years ago
  23. 3855b9a Fix limits.h for linux, as glibc does a #include_next unless by Mike Stump · 16 years ago
  24. f73903a Add an implementation of -dM that follows GCC closely enough to permit by Chris Lattner · 16 years ago
  25. c8f2d9a smaller header. by Chris Lattner · 16 years ago
  26. be5c64d Fix PR3464 by searching for headers from the predefines by Chris Lattner · 16 years ago
  27. d62ef1a Ok, we need a system header for this test to pass in the clang/test directory as well as from the pp directory. by Chris Lattner · 16 years ago
  28. cd22f81 fix test by Chris Lattner · 16 years ago
  29. df23f2b rename again by Chris Lattner · 16 years ago
  30. 72650ad rename some tests by Chris Lattner · 16 years ago
  31. 4da9f9c include smaller header for test. by Chris Lattner · 16 years ago
  32. 137b6a6 Implement handling of file entry/exit notifications from GNU by Chris Lattner · 16 years ago
  33. bd16209 # 42 doesn't change system header state either, add test. by Chris Lattner · 16 years ago
  34. 6b30667 make getFileCharacteristic linetable aware. line markers that by Chris Lattner · 16 years ago
  35. 953b4b0 Add simple #line directive test. by Chris Lattner · 16 years ago
  36. 4c9a166 add testcase for PR3437 and r63405 by Chris Lattner · 16 years ago
  37. b9c3f96 Introduce a new PresumedLoc class to represent the concept of a location by Chris Lattner · 16 years ago
  38. 202fd2c Fix a bug that I noticed by inspection. by Chris Lattner · 16 years ago
  39. 478a18e add parsing and constraint enforcement for GNU line marker directives. by Chris Lattner · 16 years ago
  40. 8e60a29 add another sanity test. by Chris Lattner · 16 years ago
  41. 359cc44 parse and enforce required constraints on #line directives. Right now by Chris Lattner · 16 years ago
  42. 4d2d04e fix rdar://6505352 - Bogus warning with -WUndef, a case Anders noticed. by Chris Lattner · 16 years ago
  43. c7d945d Make -E mode propagate #pragma comment's into the output. by Chris Lattner · 16 years ago
  44. 636c5ef Implement basic support for parsing #pragma comment, a microsoft extension by Chris Lattner · 16 years ago
  45. df7c17a Change some terminology in SourceLocation: instead of referring to by Chris Lattner · 16 years ago
  46. 5bea06a Add test case for __ASSEMBLER__ definition. by Daniel Dunbar · 16 years ago
  47. 46fb6dc testcase for PR3096 by Chris Lattner · 16 years ago
  48. e4d3788 remove this testcase, it fails with -verify still by Torok Edwin · 16 years ago
  49. 8dccec4 fix test. it now crashes, but thats another problem.. by Nuno Lopes · 16 years ago
  50. 0301c74 add testcase for PR3093 by Torok Edwin · 16 years ago
  51. 1a19c29 Skip random pathname characters better. I had a 5 in mine. by Mike Stump · 16 years ago
  52. c106c10 Add a new -dump-raw-tokens option, which allows us to see raw tokens. by Chris Lattner · 16 years ago
  53. 7499cb5 switch to using -verify by Chris Lattner · 16 years ago
  54. 22e6dd7 testcase for my previous patch. by Chris Lattner · 16 years ago
  55. b4eaf9c - Implement __block. by Steve Naroff · 16 years ago
  56. dfb99a9 make test fails if llvm is checked out to llvm-svn of if there is a dash somewhere else in the path. fix that. by Nico Weber · 16 years ago
  57. 9039a69 fix test by Nuno Lopes · 16 years ago
  58. 24af60f Patch by Kovarththanan Rajaratnam: by Ted Kremenek · 16 years ago
  59. c577a0e Multiple tests in a single test file must be linked with '&&'. by Argyrios Kyrtzidis · 16 years ago
  60. 63bc035 The awesome GNU "comma elision extension" works with both the standard by Chris Lattner · 16 years ago
  61. 98ed49f Fix a few more bugs in preprocessor expressions w.r.t. ?:. Now I by Chris Lattner · 16 years ago
  62. 9e66ba6 fix a bug handling right associative operators that Neil noticed, hopefully by Chris Lattner · 16 years ago
  63. 9189156 Fix the rest of PR2279: by Chris Lattner · 16 years ago
  64. d5214b2 Fix PR2279 part C: shifts don't perform the UACs, thanks to Neil by Chris Lattner · 16 years ago
  65. 3b69115 fix a nasty bug that Neil identifier in pp-expr parsing (this is PR2279 part D). by Chris Lattner · 16 years ago
  66. d98d975 Fix PR2220, making diagnostics for unexpected tokens in pp expressions by Chris Lattner · 17 years ago
  67. 21fbe0d fix this test. by Chris Lattner · 17 years ago
  68. 49d8dc5 Only invoke the preprocessor; it's the only thing being tested. Also, check by Sam Bishop · 17 years ago
  69. d8b28d7 Use the -E option when invoking clang. Only the preprocessor is by Sam Bishop · 17 years ago
  70. 2a625bc remove two obsolete tests, not sure why my previous commit didn't commit the removal. by Chris Lattner · 17 years ago
  71. 0184cc7 Fix PR2086. by Lauro Ramos Venancio · 17 years ago
  72. e9ba323 Fix CheckEndOfDirective to diagnose lines that contain macros that expand to by Chris Lattner · 17 years ago
  73. 3f1cc83 Implement support for the extremely atrocious MS /##/ extension, by Chris Lattner · 17 years ago
  74. 71a3a8d Fix a bug where we would incorrectly emit a "cannot paste" error by Chris Lattner · 17 years ago
  75. 116a4b1 add support for -Wundef. by Chris Lattner · 17 years ago
  76. c21d9e4 Fix PR1936, a crash on malformed #if. Thanks to Neil for noticing this! by Chris Lattner · 17 years ago
  77. b1a17ae avoid pasting L + "foo" into L"foo". by Chris Lattner · 17 years ago
  78. 4d73046 Fix a nasty corner case that Neil noticed in PR1900, where we would by Chris Lattner · 17 years ago
  79. 4c88d3a add run line by Chris Lattner · 17 years ago
  80. 5113613 add runline, make this test real. by Chris Lattner · 17 years ago
  81. 5f18032 The flags on tokens indicate whether they are the start of a *physical* line, by Chris Lattner · 17 years ago
  82. 0c3eb29 Fix PR1820, an incredibly subtle macro expansion bug that Neil discovered. by Chris Lattner · 17 years ago
  83. b283298 fix a bug Steve noticed, where a #import of the main file itself would fail. by Chris Lattner · 17 years ago
  84. f37bb25 If we see an invalid #ifdef directive, enter a conditional compilation region by Chris Lattner · 17 years ago
  85. 706ab50 implement a missing feature in the #include handler, where by Chris Lattner · 17 years ago
  86. 2b64fdc Fix a stringizing bug that Neil noticed. We should preprocess this: by Chris Lattner · 17 years ago
  87. 0ea793e Correctly respect C99 5.1.1.2p4 when searching for the first '(' of by Chris Lattner · 17 years ago
  88. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 17 years ago