1. 186204b Warn about attribute used ignored on "extern int a __attribute__((used))". by Daniel Dunbar · 15 years ago
  2. 56cd21b If x is an invalid field decl, don't construct an expression for P->x, by Chris Lattner · 15 years ago
  3. b805dad Sema/AST support for attribute used. Patch by Anders Johnson (with small tweaks & test case)! by Daniel Dunbar · 15 years ago
  4. 9653db7 Remove DeclGroupOwningRef, since we intend for declarations to be owned by Douglas Gregor · 15 years ago
  5. b235caa Start warning about unknown attributes. by Anders Carlsson · 15 years ago
  6. 05f8e47 Add a new Ignored attribute type, and use it for may_alias. by Anders Carlsson · 15 years ago
  7. e896d98 Add CodeGen support for the nodebug attribute. by Anders Carlsson · 15 years ago
  8. d87df37 Add sema support for the nodebug attribute. by Anders Carlsson · 15 years ago
  9. f98aba3 Initial implementation of arbitrary fixed-width integer types. by Eli Friedman · 15 years ago
  10. ae17094 Tighten checking of the "overloadable" attribute. If any function by a by Douglas Gregor · 15 years ago
  11. 1fd0361 Fix <rdar://problem/6499801> clang does not detect objc type mismatch in conditional expr by Steve Naroff · 15 years ago
  12. dfb5e59 Fix a bug with designated initializers where we were stepping out of a by Douglas Gregor · 15 years ago
  13. 4ab2414 Sema::ActOnObjCAtThrowStmt(): return from recently added errors. Thanks Chris! by Steve Naroff · 15 years ago
  14. 389bf46 Several cleanups: by Steve Naroff · 15 years ago
  15. 17f194f Support __attribute__(section(<name>)) by Daniel Dunbar · 15 years ago
  16. 3dcfe10 Turn warning into error. Minor incompatibility with GCC (for scalar types, GCC only produces a warning). by Steve Naroff · 15 years ago
  17. b7b5d13 Expand the definition of a complex promotion to include complex -> by Douglas Gregor · 15 years ago
  18. 5cdf821 Introduce _Complex conversions into the function overloading by Douglas Gregor · 15 years ago
  19. 1a35fde Fix comment. by Mike Stump · 15 years ago
  20. f9201e0 Initial implementation of function overloading in C. by Douglas Gregor · 15 years ago
  21. 1bc6913 Appease the language lawyers by Douglas Gregor · 15 years ago
  22. e21dd6f Fix <rdar://problem/6243503> [sema] @throw; accepted outside catch block. by Steve Naroff · 15 years ago
  23. cc45cb3 Finished semantic analysis of non-type template arguments, to check by Douglas Gregor · 15 years ago
  24. 5fa77e9 Avoid bogus warning. by Mike Stump · 15 years ago
  25. 8e6563b Reverted r64307. Moved hasSameType and hasSameUnqualifiedType from by Douglas Gregor · 15 years ago
  26. 62cb18d Allow the use of default template arguments when forming a class by Douglas Gregor · 15 years ago
  27. 7151bbb Fix <rdar://problem/6206858> [sema] type check @throw statements. by Steve Naroff · 15 years ago
  28. 26a0bdb Rename Sema::hasSameType to QualType::isSameAs by Douglas Gregor · 15 years ago
  29. 658bbb5 Implement semantic checking for template arguments that correspond to by Douglas Gregor · 15 years ago
  30. b86b057 Add semantic checking for template arguments that correspond to by Douglas Gregor · 15 years ago
  31. f684e6e Semantic checking for template arguments that correspond to non-type by Douglas Gregor · 15 years ago
  32. a35284b Add partial semantic checking of template arguments that are meant for by Douglas Gregor · 15 years ago
  33. 6ae5e66 Add type-checking and implicit conversions for template parameters of by Douglas Gregor · 15 years ago
  34. 0bfe54f GNU allows structs with flexible array members to be placed inside by Douglas Gregor · 15 years ago
  35. d684b00 Implement parsing, semantic analysis and ASTs for default template by Douglas Gregor · 15 years ago
  36. 5d290d5 Semantic analysis for non-type template parameter declarations. by Douglas Gregor · 15 years ago
  37. 8b64259 Teach the type-id/expression disambiguator about different by Douglas Gregor · 15 years ago
  38. dd0574e Check template template arguments against their corresponding template by Douglas Gregor · 15 years ago
  39. c15cb38 Rudimentary checking of template arguments against their corresponding by Douglas Gregor · 15 years ago
  40. 668bf91 CallExpr now uses ASTContext's allocate to allocate/delete its array of subexpressions. by Ted Kremenek · 15 years ago
  41. fdf5569 When handling "the rest" of a designated array subobject, maybe sure by Douglas Gregor · 15 years ago
  42. 5908e9f Eliminate TemplateArg so that we only have a single kind of by Douglas Gregor · 15 years ago
  43. 55f6b14 Start processing template-ids as types when the template-name refers by Douglas Gregor · 15 years ago
  44. 00e68e2 Update new expression to make use of Declarator::getSourceRange(). by Sebastian Redl · 15 years ago
  45. ab197ba Implement Declarator::getSourceRange(). by Sebastian Redl · 15 years ago
  46. fb7413f Allocate the subexpression array for OberloadExpr from ASTContext's allocator. by Ted Kremenek · 15 years ago
  47. 1a51b4a Make Sema::getTypeName return the opaque pointer of a QualType rather by Douglas Gregor · 15 years ago
  48. 00d5074 Fix redundant errors with missing default arguments in member declarations. by Sebastian Redl · 15 years ago
  49. 89ef6e0 Fix redundant errors for redefinitions with multiple existing definitions. by Sebastian Redl · 15 years ago
  50. 89941c1 Improve Sema of the cleanup attribute somewhat. by Anders Carlsson · 15 years ago
  51. 7c8bd60 Move CheckPointerToMemberOperands to SemaExprCXX.cpp by Sebastian Redl · 15 years ago
  52. 169a266 Use 'Destroy(Context)' instead of 'Context.Deallocate()' (does recursive freeing of memory). by Ted Kremenek · 15 years ago
  53. 8189cde Overhaul of Stmt allocation: by Ted Kremenek · 15 years ago
  54. 7878ffd Add negative test cases and fix diagnostics for member pointer dereferencing. by Sebastian Redl · 15 years ago
  55. 2246050 Implement dereferencing of pointers-to-member. by Sebastian Redl · 15 years ago
  56. 4b99bae Clean up an already-fixed FIXME by Douglas Gregor · 15 years ago
  57. ddc29e1 Semantic checking for class template declarations and by Douglas Gregor · 15 years ago
  58. 6e94ef5 Move StringLiteral to allocate its internal string data using the allocator in by Ted Kremenek · 15 years ago
  59. 4ce205f Diagnose attempts to define a namespace member out-of-line when no by Douglas Gregor · 15 years ago
  60. 7dda67d Improvements and fixes for name lookup with using directives, from Piotr Rak! by Douglas Gregor · 15 years ago
  61. 0defd76 Remove some non-ASCII in comment. by Sebastian Redl · 15 years ago
  62. eeb15d4 Implement semantic analysis for the GNU flexible array initialization by Douglas Gregor · 15 years ago
  63. 98eb8a7 Add support for blocks with explicit return types. by Mike Stump · 15 years ago
  64. 33b399a Implement taking address of member functions, including overloaded ones. by Sebastian Redl · 15 years ago
  65. d6efafa Improve documentation for Sema::getTypeName. Also, it's return type is by Douglas Gregor · 15 years ago
  66. aaba5e3 Basic representation of C++ class templates, from Andrew Sutton. by Douglas Gregor · 15 years ago
  67. 47b9a1c Some name-lookup-related fixes, from Piotr Rak! by Douglas Gregor · 15 years ago
  68. 818cb9e Fix <rdar://problem/6552648> error: redefinition of 'XCElementAnchorDelegate' as different kind of symbol. by Steve Naroff · 15 years ago
  69. b696ea3 Diagnose ambiguities in getTypeName. Fixes http://llvm.org/bugs/show_bug.cgi?id=3475 by Douglas Gregor · 15 years ago
  70. f680a0f Bring operator name lookup (as required for C++ operator overloading) by Douglas Gregor · 15 years ago
  71. 1733001 Fix our semantic analysis of by Douglas Gregor · 15 years ago
  72. fa04764 Initial implementation of argument dependent lookup (a.k.a. ADL, by Douglas Gregor · 15 years ago
  73. 48458d2 silence some warnings. by Chris Lattner · 15 years ago
  74. ebc07d5 Allow taking the address of data members, resulting in a member pointer. by Sebastian Redl · 15 years ago
  75. e2c565d When looking for a tag name via unqualified name lookup, only look in by Douglas Gregor · 15 years ago
  76. 2a3009a Semantic analysis, ASTs, and unqualified name lookup support for C++ by Douglas Gregor · 15 years ago
  77. 1931b44 Simplify the way in which we inject the names of tag definitions and by Douglas Gregor · 15 years ago
  78. 64650af Add a macro-based enumeration of all of the Decl nodes (like we do by Douglas Gregor · 15 years ago
  79. ff77645 emit diagnostic when casting a ptr to a small int when doing static initialization (addresses Eli's comments I believe) by Nuno Lopes · 15 years ago
  80. 1dfa6e1 fix TryToFixInvalidVariablyModifiedType to reject negative array sizes by Nuno Lopes · 15 years ago
  81. 2b1e003 Steve set me straight on this one. GCC was right, EDG was wrong: the by Douglas Gregor · 15 years ago
  82. d863517 Add iterators to LookupResult, allowing one to iterate over the by Douglas Gregor · 15 years ago
  83. 87fd703 Check value-initializations that occur when an initializer list by Douglas Gregor · 15 years ago
  84. 8395081 allow cast from array to int to be considered as constant by Nuno Lopes · 15 years ago
  85. f231998 fix PR3459: improve compatibility with gcc when checking for constant exprs by Nuno Lopes · 15 years ago
  86. f6e35d0 Add sema support for the cleanup attribute. by Anders Carlsson · 15 years ago
  87. 734d986 Improve our handling of the second step in a user-defined conversion by Douglas Gregor · 15 years ago
  88. b0f90cc Turn on -flax-vector-conversions by default, issue a warning whenever one is done. Add a -fnolax-vector-conversions option. Fixes PR2862. by Anders Carlsson · 15 years ago
  89. b574e56 Upgrade the "excess elements in array initializer" warning to an by Douglas Gregor · 15 years ago
  90. 930d8b5 Implement and test aggregate initialization in C++. Major changes: by Douglas Gregor · 15 years ago
  91. d7eb846 Switch Type::isAggregateType to use the C++ definition of "aggregate by Douglas Gregor · 15 years ago
  92. 4c921ae Eliminated LookupCriteria, whose creation was causing a bottleneck for by Douglas Gregor · 15 years ago
  93. a9c8780 Make CodeGen produce an error if we come across a non-constant initializer list that involves the GNU array-range designator extension by Douglas Gregor · 15 years ago
  94. 28372fa diags moved, so these casts are no longer needed. by Chris Lattner · 15 years ago
  95. a518903 Hack Sema::LookupDeclInScope() to avoid calling Sema::LookupName() when parsing C/ObjC. by Steve Naroff · 15 years ago
  96. 3498bdb Introduce a new expression node, ImplicitValueInitExpr, that by Douglas Gregor · 15 years ago
  97. 0bb7689 Clean up designated initialization of unions, so that CodeGen doesn't by Douglas Gregor · 15 years ago
  98. 5d2ff63 Suppress a warning by Douglas Gregor · 15 years ago
  99. 500d329 move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 15 years ago
  100. 68355a5 fix an absolutely inscrutible gcc 4.0 error: by Chris Lattner · 15 years ago