1. 109603d Always check that the definition of a function has the correct type. by Eli Friedman · 16 years ago
  2. 4bd998b Cleanup/refactoring of Sema struct layout. This patch unifies the struct by Eli Friedman · 16 years ago
  3. b896596 More complete/correct implementation of the comparison operators for by Eli Friedman · 16 years ago
  4. ec2c126 Fix an extremely subtle bug with pointer comparisons: they have to be by Eli Friedman · 16 years ago
  5. 1e86b34 Rearrange EmitLValueForField a bit to work properly for _Bool bitfields by Eli Friedman · 16 years ago
  6. bc5ed6e Add codegen support for a few more kinds of initializer constant expressions. by Eli Friedman · 16 years ago
  7. 08d7802 Add CodeGen support for alignment on globals, both for unusual natural by Eli Friedman · 16 years ago
  8. a07b764 Tentative declarations are supposed to have common linkage, not weak. by Eli Friedman · 16 years ago
  9. 0408f68 Always use packed structs. This isn't really very nice, but there's by Eli Friedman · 16 years ago
  10. aec3a1e Fix a couple crashes on invalid input. by Chris Lattner · 16 years ago
  11. 2fb86e6 Check first member alignment and uses packed struct if required. by Devang Patel · 16 years ago
  12. bf20b68 Fix test case by Devang Patel · 16 years ago
  13. b185124 A few more cases for aggregate values. by Eli Friedman · 16 years ago
  14. f4e8533 Implementation of __builtin_ctlz. by Eli Friedman · 16 years ago
  15. 8ef1f26 Get the type right for wide string literals; it's wchar_t, not char. by Eli Friedman · 16 years ago
  16. 2742496 Don't swap function decls, and add them to the scope as they are by Eli Friedman · 16 years ago
  17. 6f7e2ee Add a more reliable check for whether a static declaration has already by Eli Friedman · 16 years ago
  18. f6a943e Generalize the float type generation code, and specifically fix the by Eli Friedman · 16 years ago
  19. 3c0eb16 Implementation of gcc mode attribute; this is significant because by Eli Friedman · 16 years ago
  20. 1f3105e Change diagnostic per suggestion, to make it a bit clearer what is happening. by Eli Friedman · 16 years ago
  21. f84eda3 Count the number of initializable members correctly in structs/unions by Eli Friedman · 16 years ago
  22. 402256f Diagnose implicit init list for empty aggregate, like struct {}. Fixes by Eli Friedman · 16 years ago
  23. 638e144 Move the error checking for variable-sized objects so we don't by Eli Friedman · 16 years ago
  24. 1435202 Fix this test on non-X86 platforms. by Eli Friedman · 16 years ago
  25. 514b24c fix a nasty off-by-one error. by Chris Lattner · 16 years ago
  26. 9ed7cfd fix an inconsistency computing offsets that caused a crash on rewrite-nest.m by Chris Lattner · 16 years ago
  27. ca65b02 More test cases for retain/release checker. These cases handle not flagging leaks for static variables. by Ted Kremenek · 16 years ago
  28. 1b76779 fix typo by Gabor Greif · 16 years ago
  29. bd2a694 Additional retain/release checker regression tests. by Ted Kremenek · 16 years ago
  30. 6d1e4b5 Patch for PR2350; the issue was tnat we were allowing (with an error) by Eli Friedman · 16 years ago
  31. 3eb817e Improve dead stores diagnostics to include the variable name. by Ted Kremenek · 16 years ago
  32. 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
  33. 0ac5957 A small testcase; no patch, since it was a bug in a patch I never committed. by Eli Friedman · 16 years ago
  34. 6b2564c Fix this test so that it's valid; the point is to test for the crash, by Eli Friedman · 16 years ago
  35. b0c0554 PR2347: Fix crash iterating over VLAs; this started triggering because by Eli Friedman · 16 years ago
  36. 97c0a39 Fix a couple of bugs found by Neil Booth in the const-ness checking. by Eli Friedman · 16 years ago
  37. 33701a6 Test from PR2332; bug already fixed by r51311. by Eli Friedman · 16 years ago
  38. 6e33dd5 Fix the scope of K&R-style argument declarations so that they don't by Eli Friedman · 16 years ago
  39. a8ea76a Fix test (it was incorrectly succeeding). by Eli Friedman · 16 years ago
  40. 256f77e Add codegen support for stack address intrinsics. by Eli Friedman · 16 years ago
  41. e590a84 Fix typo in test. by Eli Friedman · 16 years ago
  42. 6cfda23 Add __builtin_frame_address and __builtin_return_address gcc builtins to by Eli Friedman · 16 years ago
  43. 07fa52a Implement codegen for comma operator for structs. by Eli Friedman · 16 years ago
  44. d8dc210 Be a bit more defensive in SemaInit. by Eli Friedman · 16 years ago
  45. 6223c22 Add some more checking for compound literals. by Eli Friedman · 16 years ago
  46. d4b32e4 Implement CodeGen for __builtin_memcpy. by Eli Friedman · 16 years ago
  47. 4be1f47 Make the unused expression warning a bit less aggressive (found in PHP code). by Eli Friedman · 16 years ago
  48. c56c977 Switch on SemaInit; this makes some code in SemaDecl dead, but I'll give by Eli Friedman · 16 years ago
  49. 19119a8 Remove illegal test. by Eli Friedman · 16 years ago
  50. 922696f Fix the emission of expressions like char a[10] = "asdf"; previously, by Eli Friedman · 16 years ago
  51. d72d16e Add proper type-checking for pointer additiion; before, we were accepting by Eli Friedman · 16 years ago
  52. 316bb1b Fix support for _Bool bitfields. The issue is that the bitfield width by Eli Friedman · 16 years ago
  53. 145c083 Patch for PR2334, and a similar ObjC bug. by Eli Friedman · 16 years ago
  54. d38617c Implementation of __builtin_shufflevector, a portable builtin capable of by Eli Friedman · 16 years ago
  55. 06e863f Add codegen support for block-level compound literals. by Eli Friedman · 16 years ago
  56. 5773a6c Both operands to && have to be scalars, not just one. by Eli Friedman · 16 years ago
  57. 235549c Fix <rdar://problem/5924576> clang -fsyntax-only generates "redefinition" errors when parsing AppKit that gcc does not. by Steve Naroff · 16 years ago
  58. 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
  59. a989def testcase for PR2263, fixed by Nate's r50903 patch. by Chris Lattner · 16 years ago
  60. d28a80d Emit basic block for switch body; fixes PR2307. by Eli Friedman · 16 years ago
  61. c8ba961 Don't try to take the address of a bitfield; fixes PR2310. by Eli Friedman · 16 years ago
  62. 00bc645 -Implement proper name lookup for namespaces. by Argyrios Kyrtzidis · 16 years ago
  63. 1ffe281 Added support to generate some atomic operators (add, sub, and, or etc..) by Mon P Wang · 16 years ago
  64. 72786e0 Add attribute "format" support for typedefs of function pointers. by Ted Kremenek · 16 years ago
  65. 8a99764 Extend vector member references to include {.hi, .lo, .e, .o} which return a by Nate Begeman · 16 years ago
  66. abb5758 Fix rdar://5921025 a crash on the included testcase. by Chris Lattner · 16 years ago
  67. 63bc035 The awesome GNU "comma elision extension" works with both the standard by Chris Lattner · 16 years ago
  68. 5cada6b Begin handling union bitfields. Note, this is just beginning. by Devang Patel · 16 years ago
  69. 0fcbf8e Expand the CF retain checker to allow the Create/Get rule to apply to any by Ted Kremenek · 16 years ago
  70. 6d6eb57 Diagnose attempts to use C++ default arguments outside of a function declaration by Douglas Gregor · 16 years ago
  71. a22cc2f Don't report leaks for autoreleased objects. by Ted Kremenek · 16 years ago
  72. d8ecd3c Fix PR2101 - Codegen crash during bitfield initialization. by Devang Patel · 16 years ago
  73. daa0311 Test was accidently nullified in previous check-in. by Fariborz Jahanian · 16 years ago
  74. 5251e13 Patch to refactor setter/getter names of property attributes into Selector by Fariborz Jahanian · 16 years ago
  75. 70f9d86 String comparison cleanups. Added test case. by Ted Kremenek · 16 years ago
  76. b309525 Use EvalSummary to process message expressions, thereby unifying the checker by Ted Kremenek · 16 years ago
  77. a23157e Emit dead store warnings for ++ and -- operators. by Ted Kremenek · 16 years ago
  78. 95e2c71 Fix rdar://5905347 a crash on invalid builtin, due to the by Chris Lattner · 16 years ago
  79. 98ed49f Fix a few more bugs in preprocessor expressions w.r.t. ?:. Now I by Chris Lattner · 16 years ago
  80. 86ad3bc Minor refactorings/cleanups in CF retain checker and added support for NSMakeCollectable. by Ted Kremenek · 16 years ago
  81. 5c454ab When reporting branch conditions that evaluate to an uninitialized value, by Ted Kremenek · 16 years ago
  82. 9e66ba6 fix a bug handling right associative operators that Neil noticed, hopefully by Chris Lattner · 16 years ago
  83. 9189156 Fix the rest of PR2279: by Chris Lattner · 16 years ago
  84. d5214b2 Fix PR2279 part C: shifts don't perform the UACs, thanks to Neil by Chris Lattner · 16 years ago
  85. 3b69115 fix a nasty bug that Neil identifier in pp-expr parsing (this is PR2279 part D). by Chris Lattner · 16 years ago
  86. be34ac6 add testcase for pr2050 which is now fixed. by Chris Lattner · 16 years ago
  87. d3c3856 add a testcase by Chris Lattner · 16 years ago
  88. 57c9934 Another test case for properties in protocols. by Fariborz Jahanian · 16 years ago
  89. aebf0cb This patch is about merging ObjC2's properties declared in class by Fariborz Jahanian · 16 years ago
  90. 623f83f testcase cleanup by Ted Kremenek · 16 years ago
  91. fd3344d Static analysis test case for noreturn on exceptions. by Ted Kremenek · 16 years ago
  92. 3435096 Patch to match and issue diagnostics on property type mismatch. by Fariborz Jahanian · 16 years ago
  93. e866a7c Added test case for the static analyzer. by Ted Kremenek · 16 years ago
  94. e2013f5 Added test case to test null dereference checking with lval::ArrayOffset. by Ted Kremenek · 16 years ago
  95. dd6cec1 Convert CFLF to LF. CRLF was causing this test to fail under Mac OS X. by Ted Kremenek · 16 years ago
  96. 2d1c5d3 Parsing of namespaces: by Argyrios Kyrtzidis · 16 years ago
  97. 5827754 remove the 'unused static' diagnostic from codegen. This should be by Chris Lattner · 16 years ago
  98. 910e999 Do a better job at computing dead symbols. by Ted Kremenek · 16 years ago
  99. 43ae4b0 Added uninitialized-values (path-sensitive) test case as a regression test by Ted Kremenek · 16 years ago
  100. 08e48c1 Added test case for functionality fix in rdar://problem/5886141 (handle variadic CF Create functions). by Ted Kremenek · 16 years ago