1. 6540180 various "is invalid" cleanups for C++ ctors/dtors. by Chris Lattner · 16 years ago
  2. eaaebc7 This is a pretty big cleanup for how invalid decl/type are handle. by Chris Lattner · 16 years ago
  3. 2dbd285 fix PR4049, a crash on invalid, by making sema install the right number of by Chris Lattner · 16 years ago
  4. 1ad9b28 rename getNumParmVarDeclsFromType back to getNumParams(), by Chris Lattner · 16 years ago
  5. 7cbeef2 in: typedef void foo(void); by Chris Lattner · 16 years ago
  6. 584be45 set NewFD->setInvalidDecl() in one place, sharing code and ensuring that by Chris Lattner · 16 years ago
  7. 5cb10d3 fix the sizeof error recovery issue (sizeof-interface.m:attributeRuns) by Chris Lattner · 16 years ago
  8. 516ff43 Eliminate Sema::ObjCAliasDecls. This is based on Steve's fix, but also by Douglas Gregor · 16 years ago
  9. 319ac89 PCH support for all of the predefined Objective-C types, such as id, by Douglas Gregor · 16 years ago
  10. b3efa98 Fix handling of C99 "extern inline" semantics when dealing with by Douglas Gregor · 16 years ago
  11. 8f36aba The ivars in an ObjCImplementationDecl are now stored in the by Douglas Gregor · 16 years ago
  12. 21e072b Eliminate Sema::KnownFunctionIDs, so that Sema doesn't end up pulling by Douglas Gregor · 16 years ago
  13. b6c8c8b Explictly track tentative definitions within Sema, then hand those by Douglas Gregor · 16 years ago
  14. df9bcd5 clean up anonymous bitfield diagnostics, PR4017 by Chris Lattner · 16 years ago
  15. 4fb71b0 Print an error for uses of __thread on targets which don't support it. by Eli Friedman · 16 years ago
  16. 63054b3 Add more thorough/correct checking for invalid __thread specifiers. by Eli Friedman · 16 years ago
  17. 38c5ebd add a new Sema::CurFunctionNeedsScopeChecking bool that is used to avoid by Chris Lattner · 16 years ago
  18. 5af280c move jump scope checking and related code out into its own file, SemaDecl.cpp is by Chris Lattner · 16 years ago
  19. e52a693 rewrite an O(N^2) algorithm to be O(n). by Chris Lattner · 16 years ago
  20. b5cf1ea second half of indirect jump checking: make sure that any by Chris Lattner · 16 years ago
  21. 04ea2b6 First half of jump scope checking for indirect goto. by Chris Lattner · 16 years ago
  22. 2b7b2ca reimplement DeclStmt handling so that we correctly handle intermixed by Chris Lattner · 16 years ago
  23. 5223af8 the scope checker does work with objc methods, add testcase. by Chris Lattner · 16 years ago
  24. dabbad0 I didn't understand how @catches were chained. Now that I get it, fix by Chris Lattner · 16 years ago
  25. cd99d9e forgot to commit this before. by Chris Lattner · 16 years ago
  26. 07e775d reject invalid jumps among pieces of @try blocks. This seems to work by Chris Lattner · 16 years ago
  27. b565937 unconditionally check for goto correctness. This is because switch by Chris Lattner · 16 years ago
  28. 4f2aac3 fix two error paths out of ParseBlockLiteralExpression to by Chris Lattner · 16 years ago
  29. ea29a3a refactor some code, adding a new getLabelMap() accessor method by Chris Lattner · 16 years ago
  30. a9768b7 Improve switch diagnostic to emit the "jump" message on the by Chris Lattner · 16 years ago
  31. 366920a first step to getting switches giving "jump into vla scope" errors. by Chris Lattner · 16 years ago
  32. e32f74c fix error recovery in the case of a jump to a label with no definition by Chris Lattner · 16 years ago
  33. a5251fc rewrite the goto scope checking code to be more efficient, simpler, by Chris Lattner · 16 years ago
  34. 9b0ed03 don't evaluate ->child_end() every time through the loop, or *i frequently within it. by Chris Lattner · 16 years ago
  35. e80f767 split code out into a new CheckFunctionJumpScopes routine, by Chris Lattner · 16 years ago
  36. ab09436 make scope checking be static functions instead of sema methods. by Chris Lattner · 16 years ago
  37. 7297134 FunctionDecl::getBody() is getting an ASTContext argument for use in by Douglas Gregor · 16 years ago
  38. 32b0675 tweak redefinition of a typedef a bit to fix a couple of problems: by Chris Lattner · 16 years ago
  39. 23a48cc fix a crash on invalid by making ActOnDeclarator create decl with by Chris Lattner · 16 years ago
  40. 072abef Add support for the __has_trivial_destructor type trait. by Anders Carlsson · 16 years ago
  41. 930e8d0 If a class has a non-trivial constructor that doesn't take any arguments, we will now make an implicit CXXTemporaryObjectExpr. So by Anders Carlsson · 16 years ago
  42. 6a7334d use getDiagnosticLevel instead of getDiagnosticMapping, which by Chris Lattner · 16 years ago
  43. 347ba89 Add support for the __has_trivial_constructor type trait. by Anders Carlsson · 16 years ago
  44. 3bf4497 Fixup http://llvm.org/viewvc/llvm-project?rev=69165&view=rev (based on feedback from Eli). by Steve Naroff · 16 years ago
  45. 1b6823d Revert previous patch (will commit a fix soon). by Steve Naroff · 16 years ago
  46. ee3899e Fix <rdar://problem/6789707> "warning: 'extern' variable has an initializer" not correct for __private_extern__. by Steve Naroff · 16 years ago
  47. b25ddfb Fix <rdar://problem/6791490> [clang10 regression] [sema] invalid illegal jump diagnostic. by Steve Naroff · 16 years ago
  48. 1fc5194 Fix <rdar://problem/6252084> [sema] jumps into Obj-C exception blocks should be disallowed. by Steve Naroff · 16 years ago
  49. f0c9083 Use hasAttr instead of getAttr for conditionals. by Mike Stump · 16 years ago
  50. 5466c7b Audit __private_extern__ handling. by Daniel Dunbar · 16 years ago
  51. f33651c Fixup CodeGen for __weak __block variables. Radar 6756266 by Mike Stump · 16 years ago
  52. a31feca PR3461: reject initializer for incomplete type. Based on patch by Tim by Eli Friedman · 16 years ago
  53. 841b53c Make the selection of type declarations in Sema::getTypeName by Douglas Gregor · 16 years ago
  54. 6491f47 fix another case that assumed that GetTypeForDeclarator would never return null. by Chris Lattner · 16 years ago
  55. 798d569 fix code that incorrectly assumed that GetTypeForDeclarator cannot return null. by Chris Lattner · 16 years ago
  56. 4c97d76 Diagnose invalid uses of tagged types with a missing tag. For example, in: by Chris Lattner · 16 years ago
  57. 5186872 fix a valgrind problem I noticed while developing another patch, by Chris Lattner · 16 years ago
  58. bfc861e a few cleanups to StatementCreatesScope: unnest the whole thing, by Chris Lattner · 16 years ago
  59. f97e8fa simplify code to use adjustParameterType, apply objc arg attributes by Chris Lattner · 16 years ago
  60. bb74982 diagnose attempts to return objc interfaces by-value from C functions. by Chris Lattner · 16 years ago
  61. 2dd979f Improve the 'cannot pass objc interface by value' diagnostic: by Chris Lattner · 16 years ago
  62. e1d918e Compare the predefines buffer in the PCH file with the predefines by Douglas Gregor · 16 years ago
  63. 8038d51 Various minor fixes to PCH reading and writing, with general by Douglas Gregor · 16 years ago
  64. 2cf2634 Implementation of pre-compiled headers (PCH) based on lazy by Douglas Gregor · 16 years ago
  65. 6ab3524 Propagate the ASTContext to various AST traversal and lookup functions. by Douglas Gregor · 16 years ago
  66. d296836 Add some FIXMEs for missing checks. by Eli Friedman · 16 years ago
  67. 2c2d9dc -Wmissing-prototypes shouldn't complain about main() missing a prototype. by Douglas Gregor · 16 years ago
  68. 85a5319 Diagnose uses of function specifiers on declarations which don't declare by Eli Friedman · 16 years ago
  69. 2610348 Clean up -fixit output slightly by Douglas Gregor · 16 years ago
  70. a3a8351 Add some more code modification hints by Douglas Gregor · 16 years ago
  71. 31a19b6 Make parsing a semantic analysis a little more robust following Sema by Douglas Gregor · 16 years ago
  72. 8499f3f Implement -Wmissing-prototypes. Fixes PR3911. by Douglas Gregor · 16 years ago
  73. 682bf92 Push DeclGroup much farther throughout the compiler. Now the various by Chris Lattner · 16 years ago
  74. b28317a Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a by Chris Lattner · 16 years ago
  75. 3329756 Improve recovery when a constructor fails to type-check. Test case from Anders by Douglas Gregor · 16 years ago
  76. 0cf8830 Factor the member access specifier setting code into its own function. No intended functionality change. by Anders Carlsson · 16 years ago
  77. 5071345 Check that the access specifier of a member redeclaration is the same as the original declaration. by Anders Carlsson · 16 years ago
  78. befc20e The injected-class-name of class templates and class template by Douglas Gregor · 16 years ago
  79. 1329c27 Tighten the setAccess assert. We now allow AS_none if the decl contex is not a C++ record decl. by Anders Carlsson · 16 years ago
  80. 3d7a12a Implement template instantiation for static data members of class by Douglas Gregor · 16 years ago
  81. 06c0fec Pass access specifiers through to member classes and member enums. by Douglas Gregor · 16 years ago
  82. d475b8d Instantiation for member classes of class templates. Note that only by Douglas Gregor · 16 years ago
  83. c9b5b40 Predicate to detect when a RecordDecl is really the injected-class-name by Douglas Gregor · 16 years ago
  84. e7450f5 Make sure to use RequireCompleteType rather than testing for by Douglas Gregor · 16 years ago
  85. 8211eff More work on diagnosing abstract classes. We can now handle cases like by Anders Carlsson · 16 years ago
  86. 2dc0e64 Template instantiation for the declarations of member functions within by Douglas Gregor · 16 years ago
  87. 11f21a0 More improvements to abstract type checking. Handle arrays correctly, and make sure to check parameter types before they decay. by Anders Carlsson · 16 years ago
  88. b9bbe49 It's an error to try to allocate an abstract object using new. by Anders Carlsson · 16 years ago
  89. 374e156 Fix PR3855. When we encounter an incompatible redeclaration of a by Douglas Gregor · 16 years ago
  90. d1659a6 Tighten up the determination of whether a function declaration has a by Douglas Gregor · 16 years ago
  91. 38179b2 Thanks to Eli for pointing out my misreading of 6.2.2p5 by Douglas Gregor · 16 years ago
  92. 4681ebd Disallow abstract types where appropriate. by Anders Carlsson · 16 years ago
  93. 67e4dd2 Keep track of whether a class is abstract or not. This is currently only used for the __is_abstract type trait. by Anders Carlsson · 16 years ago
  94. 5ef122e Variables marked as "extern" can actually have internal linkage if by Douglas Gregor · 16 years ago
  95. d874def Add a clarifying comment about HasPrototype's computation by Douglas Gregor · 16 years ago
  96. 13d7a32 If a function is declared as, e.g., by Douglas Gregor · 16 years ago
  97. 5953d8b Introduce a new expression type, UnresolvedDeclRefExpr, that describes by Douglas Gregor · 16 years ago
  98. e625893 Extend the use of QualifiedNameType to the creation of class template by Douglas Gregor · 16 years ago
  99. e4e5b05 Introduce a representation for types that we referred to via a by Douglas Gregor · 16 years ago
  100. ca5e77f The scope representation can now be either a DeclContext pointer or a by Douglas Gregor · 16 years ago