1. c1cc6dc Allow a pointer implicitly cast to a bool as a constant expression, as by Eli Friedman · 16 years ago
  2. f8f873d Make sure to allow assigning a pointer to a bool. by Eli Friedman · 16 years ago
  3. 4bd998b Cleanup/refactoring of Sema struct layout. This patch unifies the struct by Eli Friedman · 16 years ago
  4. 8ef1f26 Get the type right for wide string literals; it's wchar_t, not char. by Eli Friedman · 16 years ago
  5. 3c0eb16 Implementation of gcc mode attribute; this is significant because by Eli Friedman · 16 years ago
  6. 1f3105e Change diagnostic per suggestion, to make it a bit clearer what is happening. by Eli Friedman · 16 years ago
  7. f84eda3 Count the number of initializable members correctly in structs/unions by Eli Friedman · 16 years ago
  8. 402256f Diagnose implicit init list for empty aggregate, like struct {}. Fixes by Eli Friedman · 16 years ago
  9. 638e144 Move the error checking for variable-sized objects so we don't by Eli Friedman · 16 years ago
  10. 1435202 Fix this test on non-X86 platforms. by Eli Friedman · 16 years ago
  11. 6d1e4b5 Patch for PR2350; the issue was tnat we were allowing (with an error) by Eli Friedman · 16 years ago
  12. 6b2564c Fix this test so that it's valid; the point is to test for the crash, by Eli Friedman · 16 years ago
  13. b0c0554 PR2347: Fix crash iterating over VLAs; this started triggering because by Eli Friedman · 16 years ago
  14. 97c0a39 Fix a couple of bugs found by Neil Booth in the const-ness checking. by Eli Friedman · 16 years ago
  15. e590a84 Fix typo in test. by Eli Friedman · 16 years ago
  16. 6cfda23 Add __builtin_frame_address and __builtin_return_address gcc builtins to by Eli Friedman · 16 years ago
  17. d8dc210 Be a bit more defensive in SemaInit. by Eli Friedman · 16 years ago
  18. 6223c22 Add some more checking for compound literals. by Eli Friedman · 16 years ago
  19. 4be1f47 Make the unused expression warning a bit less aggressive (found in PHP code). by Eli Friedman · 16 years ago
  20. c56c977 Switch on SemaInit; this makes some code in SemaDecl dead, but I'll give by Eli Friedman · 16 years ago
  21. d72d16e Add proper type-checking for pointer additiion; before, we were accepting by Eli Friedman · 16 years ago
  22. 5773a6c Both operands to && have to be scalars, not just one. by Eli Friedman · 16 years ago
  23. 235549c Fix <rdar://problem/5924576> clang -fsyntax-only generates "redefinition" errors when parsing AppKit that gcc does not. by Steve Naroff · 16 years ago
  24. e701c0a Fix <rdar://problem/5928590> clang -fsyntax-only: "incompatible operand types ('int' and 'void')" on input that 'gcc -fsyntax-only' eats by Steve Naroff · 16 years ago
  25. a989def testcase for PR2263, fixed by Nate's r50903 patch. by Chris Lattner · 16 years ago
  26. 00bc645 -Implement proper name lookup for namespaces. by Argyrios Kyrtzidis · 17 years ago
  27. 72786e0 Add attribute "format" support for typedefs of function pointers. by Ted Kremenek · 17 years ago
  28. abb5758 Fix rdar://5921025 a crash on the included testcase. by Chris Lattner · 17 years ago
  29. 6d6eb57 Diagnose attempts to use C++ default arguments outside of a function declaration by Douglas Gregor · 17 years ago
  30. daa0311 Test was accidently nullified in previous check-in. by Fariborz Jahanian · 17 years ago
  31. 5251e13 Patch to refactor setter/getter names of property attributes into Selector by Fariborz Jahanian · 17 years ago
  32. 95e2c71 Fix rdar://5905347 a crash on invalid builtin, due to the by Chris Lattner · 17 years ago
  33. be34ac6 add testcase for pr2050 which is now fixed. by Chris Lattner · 17 years ago
  34. 57c9934 Another test case for properties in protocols. by Fariborz Jahanian · 17 years ago
  35. aebf0cb This patch is about merging ObjC2's properties declared in class by Fariborz Jahanian · 17 years ago
  36. 3435096 Patch to match and issue diagnostics on property type mismatch. by Fariborz Jahanian · 17 years ago
  37. dd6cec1 Convert CFLF to LF. CRLF was causing this test to fail under Mac OS X. by Ted Kremenek · 17 years ago
  38. 2d1c5d3 Parsing of namespaces: by Argyrios Kyrtzidis · 17 years ago
  39. c70bee8 Allow property in base class to be implemented in a derived class. by Fariborz Jahanian · 17 years ago
  40. 6cdf16d More semantics checks of properties. Property implementation can implicitly use by Fariborz Jahanian · 17 years ago
  41. c35b9e4 Support for @dynamic AST build. by Fariborz Jahanian · 17 years ago
  42. f009795 Clean up handling of function redeclarations by Douglas Gregor · 17 years ago
  43. 213541a OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. by Nate Begeman · 17 years ago
  44. 59b6d5a fix __attribute__(format) for struct function pointer fields by Nuno Lopes · 17 years ago
  45. e37ac4f This patch adds very basic support for parsing and type-checking class by Douglas Gregor · 17 years ago
  46. 2ce52f3 Introduce support for finding class and enum names via ordinary name lookup in C++ by Douglas Gregor · 17 years ago
  47. 9e97955 Default argument cleanups and minor improvements, patch by Doug Gregor! by Chris Lattner · 17 years ago
  48. def026a typedef void T; void f(T); by Chris Lattner · 17 years ago
  49. 8123a95 Several improvements from Doug Gregor related to default by Chris Lattner · 17 years ago
  50. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 17 years ago
  51. b048981 merge compatibility testing of qualified/unqualified interfaces together by Chris Lattner · 17 years ago
  52. 42a997c MyOtherClass<MyProtocol>* is compatible with MyClass* by Chris Lattner · 17 years ago
  53. aaf9ddb reject 'typedef int y; int test(x, y)'. by Chris Lattner · 17 years ago
  54. d658b56 Fix handling of implicit int, resolving PR2012 and reverting (and by Chris Lattner · 17 years ago
  55. a798ebc Step #1 to fixing PR2012: c89 allows declspecs to be completely by Chris Lattner · 17 years ago
  56. e2ef815 Add explicit support for diagnosing implicit function decls. by Steve Naroff · 17 years ago
  57. 63f067f PR1963: Address of function is a constant expression by Seo Sanghyeon · 17 years ago
  58. 3110251 Change ObjCInterfaceDecl to inherit from NamedDecl (not TypeDecl). While ObjCInterfaceDecl is arguably a TypeDecl, it isn't a ScopedDecl. Since TypeDecl's are scoped, it makes sense to simply treat them as NamedDecl's. I could have fiddled a bit more with the hierarchy (in terms of creating a non-scoped TypeDecl), however this probably isn't worth the effort. by Steve Naroff · 17 years ago
  59. 26b7661 improve error to be something end users will actually understand :) by Chris Lattner · 17 years ago
  60. 96b77fc 1) Enforce C99 6.7.3p2: "Types other than pointer types derived from by Chris Lattner · 17 years ago
  61. e632774 Fix several bugs in array -> pointer decomposition. by Chris Lattner · 17 years ago
  62. fd89bc8 Fix PR2017 and silence some bogus errors. by Chris Lattner · 17 years ago
  63. e8043c3 Fairly large "cleaup" related to changing ObjCCompatibleAliasDecl superclass (to inherit from NamedDecl, instead of ScopedDecl). by Steve Naroff · 17 years ago
  64. 8a93423 rename Decl::CompatibleAlias -> ObjCCompatibleAlias. by Chris Lattner · 17 years ago
  65. 9511096 Make sure Sema::ActOnClassMessage() correctly diagnoses "super". by Steve Naroff · 17 years ago
  66. 8c1a9a8 allow the format attribute to be specified in function pointer prototypes by Nuno Lopes · 17 years ago
  67. 8e7dafe Extend QualType::getAddressSpace to do the right thing for array types, and in by Nate Begeman · 17 years ago
  68. c8e89a8 Correctly error on arrays with automatic storage full of objects with by Nate Begeman · 17 years ago
  69. 5af27e0 ISO/IEC TR 18037 by Nate Begeman · 17 years ago
  70. b6789ca Add new test by Nate Begeman · 17 years ago
  71. aa8f976 Patch by Nuno Lopes: by Ted Kremenek · 17 years ago
  72. 69153db move deprecated -> attributes.c by Chris Lattner · 17 years ago
  73. 7a03452 Chris added this testcase with r47837. The mail only shows one todo-warning but I see 3. Strangeness. Correcting lines 16 and 24. by Gabor Greif · 17 years ago
  74. ddee423 Add a bunch of attributes, patch by Nuno Lopes. by Chris Lattner · 17 years ago
  75. bcb2b61 Fix http://llvm.org/bugs/show_bug.cgi?id=2103. by Steve Naroff · 17 years ago
  76. da323ad Fix http://llvm.org/bugs/show_bug.cgi?id=2106. by Steve Naroff · 17 years ago
  77. fce90e3 testcase for attr deprecated, by Nuno Lopes. by Chris Lattner · 17 years ago
  78. 86e07b6 add a test case by Nate Begeman · 17 years ago
  79. 7380466 add some semantic checks for address spaces. by Chris Lattner · 17 years ago
  80. 49581f4 fix the second half of PR2041: __restrict is ok in c90 mode, even if by Chris Lattner · 17 years ago
  81. a0992b6 by Steve Naroff · 17 years ago
  82. 5280408 Fix PR2042. One remaining issue: we don't currently diagnose by Chris Lattner · 17 years ago
  83. d3f2f79 Implemnt isVariablyModifiedType correctly. by Eli Friedman · 17 years ago
  84. 5a1b0c4 Add more tests by Anders Carlsson · 17 years ago
  85. 6a24acb Make sizeof and __alignof work correctly with packed structs. by Anders Carlsson · 17 years ago
  86. 3e5849e Fix PR2041: restrict is not a keyword in c90. by Chris Lattner · 17 years ago
  87. f963339 Get rid of outdated code that masks type errors. Fixes PR2036. by Eli Friedman · 17 years ago
  88. 708eed5 Nevermind, these tests work... I messed up my testing. by Eli Friedman · 17 years ago
  89. d574052 Partial fix for struct compatibility; there's still something messy by Eli Friedman · 17 years ago
  90. e39bfd0 by Steve Naroff · 17 years ago
  91. 4b3f9b3 Fix a minor bug in isNullPointerConstant triggered by the linux tgmath.h. by Eli Friedman · 17 years ago
  92. bab9696 Make typechecking for enum+int compatibility stricter. by Eli Friedman · 17 years ago
  93. 4c721d3 Fix type compatibility between constant and variable arrays. by Eli Friedman · 17 years ago
  94. 9532414 by Steve Naroff · 17 years ago
  95. 88cf226 Get rid of bogus warnings when the second argument in va_start is either an implicit cast expr or a paren expr. by Anders Carlsson · 17 years ago
  96. 3a15485 by Steve Naroff · 17 years ago
  97. b43eaa5 by Steve Naroff · 17 years ago
  98. a7ad98f Fix PR1992 by computing the right type for string literals, which by Chris Lattner · 17 years ago
  99. f76f5ed Add a couple of sema tests for qualifiers with conditionals containing void*. by Eli Friedman · 17 years ago
  100. 99d724f Fix PR1999, by emitting a hard error only if an argument declarator is completely by Chris Lattner · 17 years ago