1. ff4a2d9 First cut at setting attributes for functions and calls; this puts us by Eli Friedman · 16 years ago
  2. 7dfa639 Make sure _Bool globals have the correct type. by Eli Friedman · 16 years ago
  3. bfe08e0 Minor cleanup to use the ConvertTypeForMem helper. by Eli Friedman · 16 years ago
  4. 5f58b91 Remove spurious == 0 by Anton Korobeynikov · 16 years ago
  5. 20ff310 Support for code generation of Objective-C top-level language constructs. by Anton Korobeynikov · 16 years ago
  6. 289d9f2 Tweak Sema::ObjCQualifiedIdTypesAreCompatible() to handle qualified interface types on the RHS. by Steve Naroff · 16 years ago
  7. 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
  8. aa73eec Teach Sema::CheckConditionalOperands() to check for ObjCQualifiedIdType's. This fixes a bogus error. by Steve Naroff · 16 years ago
  9. 8ea78e6 Two identifiers are not the same unless they have the same identifier info. by Chris Lattner · 16 years ago
  10. 77eedd6 Calculate alignment for local variables. by Eli Friedman · 16 years ago
  11. e3a6198 Added "InitializeTU" to ASTConsumer. This is used by Sema::ParseAST to pass a by Ted Kremenek · 16 years ago
  12. baf58c3 Fix <rdar://problem/5917992> clang ObjC rewriter: #end from #if statement lost in translation. by Steve Naroff · 16 years ago
  13. 6cafbf2 Fix <rdar://problem/5969777> clang ObjC rewriter: #imported file name mysteriously commented out by Steve Naroff · 16 years ago
  14. 7691d9b Hack RewriteObjC::RewriteObjCStringLiteral() to include the filename in the generated code (replacing any non-alphanumeric characters with "_"). This allows header files to contain ObjCStringLiterals. by Steve Naroff · 16 years ago
  15. 94a82c9 Fix <rdar://problem/5965704> clang: bad receiver type 'id const' by Steve Naroff · 16 years ago
  16. f372111 Correctly preserve the order between -F and -I options. by Ted Kremenek · 16 years ago
  17. 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
  18. cd5f4aa PR1893: Fix up the type of tentative definitions of incomplete array by Eli Friedman · 16 years ago
  19. a04a153 Fix and enable generating general union initializers. Essentially, what by Eli Friedman · 16 years ago
  20. 77ba708 Allow the type of a global to be different from the type of its by Eli Friedman · 16 years ago
  21. c1cc6dc Allow a pointer implicitly cast to a bool as a constant expression, as by Eli Friedman · 16 years ago
  22. f8f873d Make sure to allow assigning a pointer to a bool. by Eli Friedman · 16 years ago
  23. 358256d Use llvm::cl::desc for description of the -Wimplicit-function-declaration option. by Ted Kremenek · 16 years ago
  24. b306404 Fix some strict-aliasing warnings by using Stmt* instead of Expr* in VariableArrayType, EnumConstantDecl, and VarDecl. by Ted Kremenek · 16 years ago
  25. cfb313b Fix constant vector init for initializer lists with an incomplete list by Eli Friedman · 16 years ago
  26. 9b52393 Fix crash with -serialize (reported to cfe-dev). The issue was by Eli Friedman · 16 years ago
  27. 109603d Always check that the definition of a function has the correct type. by Eli Friedman · 16 years ago
  28. cc9b163 Emit parameter and local variable debug information with -g. by Sanjiv Gupta · 16 years ago
  29. e36a3c8 Add FIXME to CodeGen struct layout. by Eli Friedman · 16 years ago
  30. a823400 Some additions to constant initializer generation code. Adds by Eli Friedman · 16 years ago
  31. 4bd998b Cleanup/refactoring of Sema struct layout. This patch unifies the struct by Eli Friedman · 16 years ago
  32. ae78407 Add basic support for properties references (a missing feature). by Steve Naroff · 16 years ago
  33. 54eec4c Fix one strict-aliasing warning. by Ted Kremenek · 16 years ago
  34. f494b57 - Move ObjC Expresssion AST's from Expr.h => ExprObjC.h by Steve Naroff · 16 years ago
  35. 525204a Update to follow recent LLVM changes by Anton Korobeynikov · 16 years ago
  36. 5b4681c Implement support for -w, which silences all warnings. PR2384. by Chris Lattner · 16 years ago
  37. b896596 More complete/correct implementation of the comparison operators for by Eli Friedman · 16 years ago
  38. ec2c126 Fix an extremely subtle bug with pointer comparisons: they have to be by Eli Friedman · 16 years ago
  39. 1e86b34 Rearrange EmitLValueForField a bit to work properly for _Bool bitfields by Eli Friedman · 16 years ago
  40. bc5ed6e Add codegen support for a few more kinds of initializer constant expressions. by Eli Friedman · 16 years ago
  41. 08d7802 Add CodeGen support for alignment on globals, both for unusual natural by Eli Friedman · 16 years ago
  42. 32ea35f A couple minor fixes to make debug info usable for arbitrary code: don't by Eli Friedman · 16 years ago
  43. a07b764 Tentative declarations are supposed to have common linkage, not weak. by Eli Friedman · 16 years ago
  44. 0408f68 Always use packed structs. This isn't really very nice, but there's by Eli Friedman · 16 years ago
  45. a1d91fe Implementation of stdarg.h. by Eli Friedman · 16 years ago
  46. 3d2e8c7 Fix rewrite rope to keep the leaf list up-to-date as it erases leaves by Chris Lattner · 16 years ago
  47. 8d36616 give location info to another paren expr. by Chris Lattner · 16 years ago
  48. 54bd7cb add an assertion by Chris Lattner · 16 years ago
  49. aec3a1e Fix a couple crashes on invalid input. by Chris Lattner · 16 years ago
  50. 915e972 When the build command is xcodebuild, set the magical environment variable LDPLUSPLUS to g++ to ensure that C++ object files are linked with g++ instead of gcc. by Ted Kremenek · 16 years ago
  51. 30aba6d Correctly check to see if we are analyzing C++ files (skip). by Ted Kremenek · 16 years ago
  52. 2fb86e6 Check first member alignment and uses packed struct if required. by Devang Patel · 16 years ago
  53. bf20b68 Fix test case by Devang Patel · 16 years ago
  54. bcfd5d4 Add the copysign builtins; I ran into a program that wanted __builtin_copysign. by Eli Friedman · 16 years ago
  55. b185124 A few more cases for aggregate values. by Eli Friedman · 16 years ago
  56. f4e8533 Implementation of __builtin_ctlz. by Eli Friedman · 16 years ago
  57. 211f6ad Assume statement expressions have side effects; this gets rid of a lot by Eli Friedman · 16 years ago
  58. a1d642d The cache is working again; re-enable it. by Eli Friedman · 16 years ago
  59. 8ef1f26 Get the type right for wide string literals; it's wchar_t, not char. by Eli Friedman · 16 years ago
  60. 3e4177f Add FIXME. by Eli Friedman · 16 years ago
  61. 2742496 Don't swap function decls, and add them to the scope as they are by Eli Friedman · 16 years ago
  62. 6f7e2ee Add a more reliable check for whether a static declaration has already by Eli Friedman · 16 years ago
  63. 80f3346 Stop leaking the main Sema object. (Leak found using valgrind.) by Eli Friedman · 16 years ago
  64. 3b6c493 Stop leaking the target data. (Leak found with valgrind.) by Eli Friedman · 16 years ago
  65. f6a943e Generalize the float type generation code, and specifically fix the by Eli Friedman · 16 years ago
  66. 3c0eb16 Implementation of gcc mode attribute; this is significant because by Eli Friedman · 16 years ago
  67. cbadaf6 Rewrite struct/union layout. This is mostly cleanup; this might also fix by Eli Friedman · 16 years ago
  68. b26153c Stop leaking the TUDecl. by Eli Friedman · 16 years ago
  69. 1f3105e Change diagnostic per suggestion, to make it a bit clearer what is happening. by Eli Friedman · 16 years ago
  70. 0c99509 Emit memmove, not memcpy, for structure copies; this is unfortunately by Eli Friedman · 16 years ago
  71. 1849128 Fix for PR2001. I'm not really fond of it, but it is correct (unless by Eli Friedman · 16 years ago
  72. f84eda3 Count the number of initializable members correctly in structs/unions by Eli Friedman · 16 years ago
  73. 402256f Diagnose implicit init list for empty aggregate, like struct {}. Fixes by Eli Friedman · 16 years ago
  74. 638e144 Move the error checking for variable-sized objects so we don't by Eli Friedman · 16 years ago
  75. bf0c9bd Make sure to define __sparc__ on Solaris; this should "fix" by Eli Friedman · 16 years ago
  76. 1c6a38b Generate subprogram debug info with -g. by Sanjiv Gupta · 16 years ago
  77. 1435202 Fix this test on non-X86 platforms. by Eli Friedman · 16 years ago
  78. 0613c37 Always initialize NEXT_CATCH; fixes a Valgrind uninitialized read error by Eli Friedman · 16 years ago
  79. 39165e2 Fix variable misspelling. by Ted Kremenek · 16 years ago
  80. 508b381 Don't use inferlanguage to override the default language for all files. by Ted Kremenek · 16 years ago
  81. e486399 Don't analyze .o files. by Ted Kremenek · 16 years ago
  82. 61cd988 Cleanup indentation and remove some dead code. by Ted Kremenek · 16 years ago
  83. ebf27b1 Call the correct destructor. by Ted Kremenek · 16 years ago
  84. 2c33a16 This fixes a VC++ build failure. by Steve Naroff · 16 years ago
  85. 514b24c fix a nasty off-by-one error. by Chris Lattner · 16 years ago
  86. 0d3ab3f add some assertions to catch bad things before they die by Chris Lattner · 16 years ago
  87. 9ed7cfd fix an inconsistency computing offsets that caused a crash on rewrite-nest.m by Chris Lattner · 16 years ago
  88. cfd4c7b Disable the use of PCH files when using xcodebuild. by Ted Kremenek · 16 years ago
  89. 218543b Minor tweak to -ast-dump for ivars. by Steve Naroff · 16 years ago
  90. 8bf3b1d Fix range info for explicit ivar refs. by Steve Naroff · 16 years ago
  91. 2d05c08 Revert r51498: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaDecl.cpp?rev=51498&r1=51497&r2=51498&view=diff by Ted Kremenek · 16 years ago
  92. 9547f59 Remove a diagnostic (temporary hack that will be removed next week). by Steve Naroff · 16 years ago
  93. 3b2c58c minor changes, collect the range of an expr before rewriting the subexprs by Chris Lattner · 16 years ago
  94. 1a2b90d Make sure method definitions get output with -ast-dump. by Steve Naroff · 16 years ago
  95. f4cdf41 When known, include the analyzer build in the output of scan-build. by Ted Kremenek · 16 years ago
  96. ca65b02 More test cases for retain/release checker. These cases handle not flagging leaks for static variables. by Ted Kremenek · 16 years ago
  97. 1b76779 fix typo by Gabor Greif · 16 years ago
  98. f377fc8 Unbreak build. Forget to check in this header file change with a previous commit. by Ted Kremenek · 16 years ago
  99. add62fe Fix typo. by Ted Kremenek · 16 years ago
  100. 466c2e3 Tweak AST dumper for ObjC ivars. by Steve Naroff · 16 years ago