1. fd5b2ce Added fixmes. by Ted Kremenek · 16 years ago
  2. 3ac438c Parser::ParseObjCSynchronizedStmt() needs to Enter/Exit a decl scope. by Steve Naroff · 16 years ago
  3. c134fcb For setting attributes, don't assume there are ParamVarDecls available, by Eli Friedman · 16 years ago
  4. 108f55d fix crash when codegening 'cond ? lhs : call-to-void-func()' by Nuno Lopes · 16 years ago
  5. d8de725 fix type of ?: operator. If one of the operator is void, the type should be void as well. by Nuno Lopes · 16 years ago
  6. 2663170 Fix a gcc compatibility issue which allows more protocol-qualified id on RHS to be by Fariborz Jahanian · 16 years ago
  7. 50c5c72 Don't assume that the type of a FunctionDecl is a FunctionType; that by Eli Friedman · 16 years ago
  8. 9734162 ASTContext::typesAreCompatible(): id is compatible with all qualified id types. by Steve Naroff · 16 years ago
  9. 9ad23d6 Sema::ActOnClassMessage() needs to look through it's local implementation for private class methods. by Steve Naroff · 16 years ago
  10. 6c930f2 Make sure we look through categories when searching for a classes property. by Steve Naroff · 16 years ago
  11. c793808 Put back my temporary hack until Eli addresses this in a more complete fashion. by Steve Naroff · 16 years ago
  12. a2ac06e Change Expr::isIntegerConstantExpr() to allow for pointer types (for GCC compatibility). Note FIXME. by Steve Naroff · 16 years ago
  13. 2037322 Allow implicit pointer/int conversions on ObjCQualifiedIdTypes in Sema::CheckCompareOperands() and Sema::CheckAssignmentConstraints(). by Steve Naroff · 16 years ago
  14. 0326e04 Finish up r51900. by Steve Naroff · 16 years ago
  15. 459a1e2 Fix parser bug/FIXME with @catch. by Steve Naroff · 16 years ago
  16. e3e9add Fix <rdar://problem/5979875> clang on xcode: error: use of undeclared identifier 'super' by Steve Naroff · 16 years ago
  17. b93fb49 handle the full assignment-expression grammar when using an by Chris Lattner · 16 years ago
  18. 0327f77 Teach the CF retain checker about "_init" methods. Fixes: <rdar://problem/5956379> by Ted Kremenek · 16 years ago
  19. 9141bee fix decl attributes cleaning by Nuno Lopes · 16 years ago
  20. 0049db6 fix PR2357 (#ifs didnt invalidate the multiple-inclusion optimization state) by Nuno Lopes · 16 years ago
  21. 7dfa639 Make sure _Bool globals have the correct type. by Eli Friedman · 16 years ago
  22. 289d9f2 Tweak Sema::ObjCQualifiedIdTypesAreCompatible() to handle qualified interface types on the RHS. by Steve Naroff · 16 years ago
  23. 19b87d2 Add some more test cases that demonstrate clang is a bit stricter than GCC. These can be fixed lazily if they become a problem. by Steve Naroff · 16 years ago
  24. aa73eec Teach Sema::CheckConditionalOperands() to check for ObjCQualifiedIdType's. This fixes a bogus error. by Steve Naroff · 16 years ago
  25. 77eedd6 Calculate alignment for local variables. by Eli Friedman · 16 years ago
  26. 94a82c9 Fix <rdar://problem/5965704> clang: bad receiver type 'id const' by Steve Naroff · 16 years ago
  27. 799a6a6 Teach Expr::isLvalue() about ObjC properties. For now, all properties are writable. Added a FIXME for another day. by Steve Naroff · 16 years ago
  28. cd5f4aa PR1893: Fix up the type of tentative definitions of incomplete array by Eli Friedman · 16 years ago
  29. a04a153 Fix and enable generating general union initializers. Essentially, what by Eli Friedman · 16 years ago
  30. c1cc6dc Allow a pointer implicitly cast to a bool as a constant expression, as by Eli Friedman · 16 years ago
  31. f8f873d Make sure to allow assigning a pointer to a bool. by Eli Friedman · 16 years ago
  32. cfb313b Fix constant vector init for initializer lists with an incomplete list by Eli Friedman · 16 years ago
  33. 109603d Always check that the definition of a function has the correct type. by Eli Friedman · 16 years ago
  34. 4bd998b Cleanup/refactoring of Sema struct layout. This patch unifies the struct by Eli Friedman · 16 years ago
  35. b896596 More complete/correct implementation of the comparison operators for by Eli Friedman · 16 years ago
  36. ec2c126 Fix an extremely subtle bug with pointer comparisons: they have to be by Eli Friedman · 16 years ago
  37. 1e86b34 Rearrange EmitLValueForField a bit to work properly for _Bool bitfields by Eli Friedman · 16 years ago
  38. bc5ed6e Add codegen support for a few more kinds of initializer constant expressions. by Eli Friedman · 16 years ago
  39. 08d7802 Add CodeGen support for alignment on globals, both for unusual natural by Eli Friedman · 16 years ago
  40. a07b764 Tentative declarations are supposed to have common linkage, not weak. by Eli Friedman · 16 years ago
  41. 0408f68 Always use packed structs. This isn't really very nice, but there's by Eli Friedman · 16 years ago
  42. aec3a1e Fix a couple crashes on invalid input. by Chris Lattner · 16 years ago
  43. 2fb86e6 Check first member alignment and uses packed struct if required. by Devang Patel · 16 years ago
  44. bf20b68 Fix test case by Devang Patel · 16 years ago
  45. b185124 A few more cases for aggregate values. by Eli Friedman · 16 years ago
  46. f4e8533 Implementation of __builtin_ctlz. by Eli Friedman · 16 years ago
  47. 8ef1f26 Get the type right for wide string literals; it's wchar_t, not char. by Eli Friedman · 16 years ago
  48. 2742496 Don't swap function decls, and add them to the scope as they are by Eli Friedman · 16 years ago
  49. 6f7e2ee Add a more reliable check for whether a static declaration has already by Eli Friedman · 16 years ago
  50. f6a943e Generalize the float type generation code, and specifically fix the by Eli Friedman · 16 years ago
  51. 3c0eb16 Implementation of gcc mode attribute; this is significant because by Eli Friedman · 16 years ago
  52. 1f3105e Change diagnostic per suggestion, to make it a bit clearer what is happening. by Eli Friedman · 16 years ago
  53. f84eda3 Count the number of initializable members correctly in structs/unions by Eli Friedman · 16 years ago
  54. 402256f Diagnose implicit init list for empty aggregate, like struct {}. Fixes by Eli Friedman · 16 years ago
  55. 638e144 Move the error checking for variable-sized objects so we don't by Eli Friedman · 16 years ago
  56. 1435202 Fix this test on non-X86 platforms. by Eli Friedman · 16 years ago
  57. 514b24c fix a nasty off-by-one error. by Chris Lattner · 16 years ago
  58. 9ed7cfd fix an inconsistency computing offsets that caused a crash on rewrite-nest.m by Chris Lattner · 16 years ago
  59. ca65b02 More test cases for retain/release checker. These cases handle not flagging leaks for static variables. by Ted Kremenek · 16 years ago
  60. 1b76779 fix typo by Gabor Greif · 16 years ago
  61. bd2a694 Additional retain/release checker regression tests. by Ted Kremenek · 16 years ago
  62. 6d1e4b5 Patch for PR2350; the issue was tnat we were allowing (with an error) by Eli Friedman · 16 years ago
  63. 3eb817e Improve dead stores diagnostics to include the variable name. by Ted Kremenek · 16 years ago
  64. 5c96c27 Fixed bug in the transfer function for dereferences: the loaded value from EvalLoad should bind to the UnaryOperator*, not its subexpression. by Ted Kremenek · 16 years ago
  65. 0ac5957 A small testcase; no patch, since it was a bug in a patch I never committed. by Eli Friedman · 16 years ago
  66. 6b2564c Fix this test so that it's valid; the point is to test for the crash, by Eli Friedman · 16 years ago
  67. b0c0554 PR2347: Fix crash iterating over VLAs; this started triggering because by Eli Friedman · 16 years ago
  68. 97c0a39 Fix a couple of bugs found by Neil Booth in the const-ness checking. by Eli Friedman · 16 years ago
  69. 33701a6 Test from PR2332; bug already fixed by r51311. by Eli Friedman · 16 years ago
  70. 6e33dd5 Fix the scope of K&R-style argument declarations so that they don't by Eli Friedman · 16 years ago
  71. a8ea76a Fix test (it was incorrectly succeeding). by Eli Friedman · 16 years ago
  72. 256f77e Add codegen support for stack address intrinsics. by Eli Friedman · 16 years ago
  73. e590a84 Fix typo in test. by Eli Friedman · 16 years ago
  74. 6cfda23 Add __builtin_frame_address and __builtin_return_address gcc builtins to by Eli Friedman · 16 years ago
  75. 07fa52a Implement codegen for comma operator for structs. by Eli Friedman · 16 years ago
  76. d8dc210 Be a bit more defensive in SemaInit. by Eli Friedman · 16 years ago
  77. 6223c22 Add some more checking for compound literals. by Eli Friedman · 16 years ago
  78. d4b32e4 Implement CodeGen for __builtin_memcpy. by Eli Friedman · 16 years ago
  79. 4be1f47 Make the unused expression warning a bit less aggressive (found in PHP code). by Eli Friedman · 16 years ago
  80. c56c977 Switch on SemaInit; this makes some code in SemaDecl dead, but I'll give by Eli Friedman · 16 years ago
  81. 19119a8 Remove illegal test. by Eli Friedman · 16 years ago
  82. 922696f Fix the emission of expressions like char a[10] = "asdf"; previously, by Eli Friedman · 16 years ago
  83. d72d16e Add proper type-checking for pointer additiion; before, we were accepting by Eli Friedman · 16 years ago
  84. 316bb1b Fix support for _Bool bitfields. The issue is that the bitfield width by Eli Friedman · 16 years ago
  85. 145c083 Patch for PR2334, and a similar ObjC bug. by Eli Friedman · 16 years ago
  86. d38617c Implementation of __builtin_shufflevector, a portable builtin capable of by Eli Friedman · 16 years ago
  87. 06e863f Add codegen support for block-level compound literals. by Eli Friedman · 16 years ago
  88. 5773a6c Both operands to && have to be scalars, not just one. by Eli Friedman · 16 years ago
  89. 235549c Fix <rdar://problem/5924576> clang -fsyntax-only generates "redefinition" errors when parsing AppKit that gcc does not. by Steve Naroff · 16 years ago
  90. 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
  91. a989def testcase for PR2263, fixed by Nate's r50903 patch. by Chris Lattner · 16 years ago
  92. d28a80d Emit basic block for switch body; fixes PR2307. by Eli Friedman · 16 years ago
  93. c8ba961 Don't try to take the address of a bitfield; fixes PR2310. by Eli Friedman · 16 years ago
  94. 00bc645 -Implement proper name lookup for namespaces. by Argyrios Kyrtzidis · 16 years ago
  95. 1ffe281 Added support to generate some atomic operators (add, sub, and, or etc..) by Mon P Wang · 16 years ago
  96. 72786e0 Add attribute "format" support for typedefs of function pointers. by Ted Kremenek · 16 years ago
  97. 8a99764 Extend vector member references to include {.hi, .lo, .e, .o} which return a by Nate Begeman · 16 years ago
  98. abb5758 Fix rdar://5921025 a crash on the included testcase. by Chris Lattner · 16 years ago
  99. 63bc035 The awesome GNU "comma elision extension" works with both the standard by Chris Lattner · 16 years ago
  100. 5cada6b Begin handling union bitfields. Note, this is just beginning. by Devang Patel · 16 years ago