1. 4eeab84 Don't allow blocks to be declared as returning an array. Radar 6441502 by Mike Stump · 16 years ago
  2. f91f5c8 Add a bit more handling for declarations like "int a[*]". by Eli Friedman · 16 years ago
  3. e935696 Fix for PR4079: make sure to construct the member expressions for by Eli Friedman · 16 years ago
  4. 49ac881 implement PR4077: [Linux kernel] inscrutable error on inline asm input/output constraint mismatch by Chris Lattner · 16 years ago
  5. d5e3e8e Correct the order of the parameters to CheckAssignmentConstraints in by Eli Friedman · 16 years ago
  6. 7c32f8e Fix for PR4074: allow subscripting non-lvalue arrays in C90 mode. by Eli Friedman · 16 years ago
  7. 09de176 Change isNullPointerConstant to be strict; hopefully this won't cause by Eli Friedman · 16 years ago
  8. 3b5ccca Make VerifyIntegerConstantExpr print extension warnings for non-ICEs. by Eli Friedman · 16 years ago
  9. 3bf6893 fix PR4073 by making designated initializer checking code use by Chris Lattner · 16 years ago
  10. 740782a improve a diagnostic to make more sense. by Chris Lattner · 16 years ago
  11. 5153ee6 Change SemaType's "GetTypeForDeclarator" and "ConvertDeclSpecToType" to by Chris Lattner · 16 years ago
  12. eaaebc7 This is a pretty big cleanup for how invalid decl/type are handle. by Chris Lattner · 16 years ago
  13. 2dbd285 fix PR4049, a crash on invalid, by making sema install the right number of by Chris Lattner · 16 years ago
  14. 7cbeef2 in: typedef void foo(void); by Chris Lattner · 16 years ago
  15. 1725f68 Add handling for complex->int, int->complex float, and float->complex by Eli Friedman · 16 years ago
  16. 3f84ad2 change implicit int warnings to point to the identifier, not the by Chris Lattner · 16 years ago
  17. 3936024 Fix rdar://6814950 - stdint.h isn't "-pedantic -std=c89" clean, by Chris Lattner · 16 years ago
  18. d55a71d Fix some mishandling of the attr(gnu_inline) mode when used with by Chris Lattner · 16 years ago
  19. 914d3db Resolve merge conflict better. by Mike Stump · 16 years ago
  20. 25efa10 Tighten up blocks type checking. This was discussed back in the by Mike Stump · 16 years ago
  21. 5c59e2b Fix rdar://6814047, a crash on invalid in blocks code I noticed when by Chris Lattner · 16 years ago
  22. 17f3a6d fix marking of nested blocks with the "hasBlockDeclRefExprs" to by Chris Lattner · 16 years ago
  23. b6c8c8b Explictly track tentative definitions within Sema, then hand those by Douglas Gregor · 16 years ago
  24. 81045d8 Fix PR4027 + rdar://6808859, we were rejecting implicit casts of by Chris Lattner · 16 years ago
  25. cf2a721 the __gnuc_inline__ attribute is actually named __gnu_inline__, PR4023 by Chris Lattner · 16 years ago
  26. df9bcd5 clean up anonymous bitfield diagnostics, PR4017 by Chris Lattner · 16 years ago
  27. 23d58ce Some cleanup and bug-fixing for address-of checking. This causes a couple of by Eli Friedman · 16 years ago
  28. 4fb71b0 Print an error for uses of __thread on targets which don't support it. by Eli Friedman · 16 years ago
  29. f22f77f Tests for __thread specifier. by Eli Friedman · 16 years ago
  30. 17a7830 run the jump checker on blocks, even though they don't have gotos, by Chris Lattner · 16 years ago
  31. 38c5ebd add a new Sema::CurFunctionNeedsScopeChecking bool that is used to avoid by Chris Lattner · 16 years ago
  32. deae3a7 apparently gotos aren't allowed at all in blocks. Stub out a testcase for when/if they are. by Chris Lattner · 16 years ago
  33. 3037a82 more testcases of variably modified types. by Chris Lattner · 16 years ago
  34. b5cf1ea second half of indirect jump checking: make sure that any by Chris Lattner · 16 years ago
  35. 04ea2b6 First half of jump scope checking for indirect goto. by Chris Lattner · 16 years ago
  36. c78476b add some testcases that we do not correctly handle. by Chris Lattner · 16 years ago
  37. 2b7b2ca reimplement DeclStmt handling so that we correctly handle intermixed by Chris Lattner · 16 years ago
  38. 5b40e0c rearrange. by Chris Lattner · 16 years ago
  39. 35562d1 add testcases for some more scary/horrible things that work. by Chris Lattner · 16 years ago
  40. b565937 unconditionally check for goto correctness. This is because switch by Chris Lattner · 16 years ago
  41. ede6e47 merge two tests. by Chris Lattner · 16 years ago
  42. bcfce66 abstract the SwitchStack for blocks just like we do the goto labels. by Chris Lattner · 16 years ago
  43. a9768b7 Improve switch diagnostic to emit the "jump" message on the by Chris Lattner · 16 years ago
  44. 366920a first step to getting switches giving "jump into vla scope" errors. by Chris Lattner · 16 years ago
  45. 5718a35 add some block goto test cases. by Chris Lattner · 16 years ago
  46. 5ce71c9 improve wording of scope violation error messages. by Chris Lattner · 16 years ago
  47. a5251fc rewrite the goto scope checking code to be more efficient, simpler, by Chris Lattner · 16 years ago
  48. fd0c0cf add another testcase by Chris Lattner · 16 years ago
  49. 40c56f7 __builtin_prefetch should be declared as "void __builtin_prefetch(const void *)", by Chris Lattner · 16 years ago
  50. 885b6d8 rename test by Chris Lattner · 16 years ago
  51. 32b0675 tweak redefinition of a typedef a bit to fix a couple of problems: by Chris Lattner · 16 years ago
  52. 23a48cc fix a crash on invalid by making ActOnDeclarator create decl with by Chris Lattner · 16 years ago
  53. 00cb00e adjust for the new -Wvector-conversions option by Chris Lattner · 16 years ago
  54. 397195b Fixup semantic analysis for nested blocks, and allow block literal by Mike Stump · 16 years ago
  55. 3aaa482 Fix <rdar://problem/6765383> clang-6: clang does not appear to support declaring a static Block 'const'. by Steve Naroff · 16 years ago
  56. dbb4f21 Add warning when a tentative array definition is assumed to have one element. by Daniel Dunbar · 16 years ago
  57. cd9c514 Fix <rdar://problem/6786597> varargs not supported for Blocks under clang. by Steve Naroff · 16 years ago
  58. 1b6823d Revert previous patch (will commit a fix soon). by Steve Naroff · 16 years ago
  59. ee3899e Fix <rdar://problem/6789707> "warning: 'extern' variable has an initializer" not correct for __private_extern__. by Steve Naroff · 16 years ago
  60. ffb4b6e Implement support for designated initializers that refer to members of by Douglas Gregor · 16 years ago
  61. 44e35f7 Improve "assignment to cast" diagnostic. by Daniel Dunbar · 16 years ago
  62. 5717dae Strip paren expressions when trying to diagnose "cast as lvalue" extension. by Daniel Dunbar · 16 years ago
  63. b6645dd Fix a regression in a previous patch that broke implicit by Chris Lattner · 16 years ago
  64. c519743 implement some sema for gnuc_inline attribute. Reject always_inline and no_inline on objc methods. by Chris Lattner · 16 years ago
  65. 5466c7b Audit __private_extern__ handling. by Daniel Dunbar · 16 years ago
  66. a31feca PR3461: reject initializer for incomplete type. Based on patch by Tim by Eli Friedman · 16 years ago
  67. ecca753 fix rdar://6774906, a crash handling implicit conversions between pointers by Chris Lattner · 16 years ago
  68. 5186872 fix a valgrind problem I noticed while developing another patch, by Chris Lattner · 16 years ago
  69. 73f35e6 add radar number by Chris Lattner · 16 years ago
  70. 9158804 Sema::CheckConditionalOperands(): Soften pointer/integer mismatch from error->warning. by Steve Naroff · 16 years ago
  71. 2c2d9dc -Wmissing-prototypes shouldn't complain about main() missing a prototype. by Douglas Gregor · 16 years ago
  72. 48d1ef7 Driver: Manually translate a number of -f with no- variants options to by Daniel Dunbar · 16 years ago
  73. 85a5319 Diagnose uses of function specifiers on declarations which don't declare by Eli Friedman · 16 years ago
  74. 3f41976 Daniel convinced me that accepting "const va_list" arguments to va_arg is by Chris Lattner · 16 years ago
  75. 0d20b8a in va_arg diagnostics, print out the unpromoted type. This makes the by Chris Lattner · 16 years ago
  76. 9dc8f19 Add a warning for questionable va_args usage. by Chris Lattner · 16 years ago
  77. f502691 GCC compatibility: gcc allows applying va_args to const by Chris Lattner · 16 years ago
  78. dd6f4ab Move the fix-it tests into their own subdirectory by Douglas Gregor · 16 years ago
  79. 74734d5 When calling a function without a prototype for which we have a by Douglas Gregor · 16 years ago
  80. ef5cc75 Make darned sure that the -fixit tests are testing what we want them to test by Douglas Gregor · 16 years ago
  81. fe057ac Update comments in fixit tests by Douglas Gregor · 16 years ago
  82. 558cb56 Introduce a "-fixit" mode to clang-cc that applies code-modification hints. by Douglas Gregor · 16 years ago
  83. c561367 We no longer expect an warning as this is now valid. by Mike Stump · 16 years ago
  84. a3a8351 Add some more code modification hints by Douglas Gregor · 16 years ago
  85. 9b3064b Add code modification hints to various parsing-related diagnostics. by Douglas Gregor · 16 years ago
  86. 16e3fed Split PTH tests from carbon.c into separate test. by Daniel Dunbar · 16 years ago
  87. 4eee274 Add testcase for -Wmissing-prototypes by Douglas Gregor · 16 years ago
  88. 8d69a57 Re-enable PTH testing for cocoa.h and carbon.h. This tests that PTH works on by Ted Kremenek · 16 years ago
  89. 0b5b0da Pull clang-cc code for generating PTH files based on the input type. by Daniel Dunbar · 16 years ago
  90. aab0f7a Fix block comparisons. Radar 6732116. by Mike Stump · 16 years ago
  91. cfdee92 Add -Wdeprecated-declarations to driver and add a test case. by Steve Naroff · 16 years ago
  92. 8a5c0cd Incorporate feedback from Eli. by Steve Naroff · 16 years ago
  93. d013aa1 Codegen sometimes crashes on comparisons that aren't legal, just by Chris Lattner · 16 years ago
  94. 0e3e3eb Implement UCN support for C string literals (C99 6.4.3) and add some very basic tests. Chris Goller has graciously offered to write some test to help validate UCN support. by Steve Naroff · 16 years ago
  95. 23c4b18 hoist checks for ; and in out of ParseInitDeclaratorListAfterFirstDeclarator by Chris Lattner · 16 years ago
  96. eeae8f0 Make our diagnostics about the obsolete GNU designated-initializer by Douglas Gregor · 16 years ago
  97. 55d3aaf Finish off semantic analysis for regparm, and remove the warning. Also by Eli Friedman · 16 years ago
  98. 9af5500 Fix rdar://6719156 - clang should emit a better error when blocks are disabled but are used anyway by Chris Lattner · 16 years ago
  99. 3308382 Sanity-check argument to indirect goto. by Eli Friedman · 16 years ago
  100. e7450f5 Make sure to use RequireCompleteType rather than testing for by Douglas Gregor · 16 years ago