1. 036aed1 When we see a CXXDefaultArgExpr during template instantiation, rebuild by Douglas Gregor · 15 years ago
  2. f28c687 Mangle block pointer types. Fixes PR5858. by Anders Carlsson · 15 years ago
  3. 7c8f9b7 fix typo by Chris Lattner · 15 years ago
  4. 154fe98 There is no such thing as typeinfo for a cv-qualified type. Assert by Douglas Gregor · 15 years ago
  5. 998eab1 fix opencl extvector element extraction on rvalues. We previously by Chris Lattner · 15 years ago
  6. 765ccba Diagnose the use of incomplete types in C++ typeid expressions by Douglas Gregor · 15 years ago
  7. 520ad5f Rename test file. by Ted Kremenek · 15 years ago
  8. 29b6f38 Change test case to use 'clang -cc1' (without --disable-free) instead of c-index-test (whose memory management behavior may change in the future). by Ted Kremenek · 15 years ago
  9. f57f207 Remove cv-qualifiers from the argument to typeid by Douglas Gregor · 15 years ago
  10. 9e85c74 Mangle template template parameters. Fixes PR5861. by Anders Carlsson · 15 years ago
  11. 6633522 fix the microsoft "charify" extension to return the charified token by Chris Lattner · 15 years ago
  12. 29f89f6 Fix the overflow calculation in Sema::CheckTemplateArgument to be a bit more by Eli Friedman · 15 years ago
  13. 65222e8 When using a default function argument for a function template (or by Douglas Gregor · 15 years ago
  14. 49ac8e6 Remove RewriteBlocks. It has been superseded by RewriteObjC by Kovarththanan Rajaratnam · 15 years ago
  15. e7809d4 Add 'DeclStmt::DoDestroy()' which doesn't actually recurse over its child expressions (via StmtIterator), as those expressions are owned by the Decls and Types (which are destroyed elsewhere). This fixes a crasher reported in <rdar://problem/7487294>. by Ted Kremenek · 15 years ago
  16. 61dfbec Add CFG support for the condition variable that can appear in IfStmts in C++ mode. by Ted Kremenek · 15 years ago
  17. 604d939 Suppress dead store warnings involving objects initialized with CXXExprTemporaries. by Ted Kremenek · 15 years ago
  18. fee667f Update for the intrinsic changes in llvm: the object size intrinsic by Eric Christopher · 15 years ago
  19. 5bbc8e7 Fix PR 5857. When casting from a symbolic region to an integer back to a pointer value, we were not correctly layering the correct ElementRegion on the original SymbolicRegion. by Ted Kremenek · 15 years ago
  20. 077a40d Also treat the type of the subexpression as a pointer in GRExprEngine::VisitCast when the expression is handled as an lvalue. by Ted Kremenek · 15 years ago
  21. bc12044 Test case for PR5134. by John McCall · 15 years ago
  22. 73ba9a6 Driver: Fix '... -O4 -O0 ...', which was generating bitcode. by Daniel Dunbar · 15 years ago
  23. df37000 Test case from PR5476. by John McCall · 15 years ago
  24. 44e067b Set a member's access specifier even if it doesn't match the previous specifier. by John McCall · 15 years ago
  25. 949bdb4 Add basic support for analyzing CastExprs as lvalues. by Ted Kremenek · 15 years ago
  26. 2a17af0 Objective-C methods can be variadic, too. Who knew. by Douglas Gregor · 15 years ago
  27. f857798 warn when attribute warn_unused_result is applied to void functions. by Nuno Lopes · 15 years ago
  28. 6e790ab Allow the first parameter of operator new to be a cv-qualified by Douglas Gregor · 15 years ago
  29. f2a5539 Make sure that reinterpret_cast gets a CastKind on all successful by Douglas Gregor · 15 years ago
  30. 323c310 Add using shadow decls to the "instantiated locals" map, fixing PR5847. by John McCall · 15 years ago
  31. 90f9382 Switch Sema::AddCXXDirectInitializerToDecl over to InitializationSequence by Douglas Gregor · 15 years ago
  32. 38ac4f5 Add transfer functions support for visiting an Objective-C message expression as an lvalue when the return type is a C++ reference. by Ted Kremenek · 15 years ago
  33. 9123666 Serialize the NoReturn bit on FunctionTypes for precompiled headers by Douglas Gregor · 15 years ago
  34. b4debae Enter the scope of an initializer for direct-initialization as well as by Douglas Gregor · 15 years ago
  35. 5b5ad84 When transforming a C++ "new" expression that was not explicitly given by Douglas Gregor · 15 years ago
  36. aa03731 Switch initialization of parameters in a call over to by Douglas Gregor · 15 years ago
  37. 8257d41 Make sure that we mangle overloaded operators that are member functions correctly, giving them the correct arity. by Anders Carlsson · 15 years ago
  38. 813b70d fix a bug handling the gnu ?: extension. Patch by Storlek on IRC, by Chris Lattner · 15 years ago
  39. 1f24032 When we simply return a retained member expression when instantiating, we must also mark the member decl as referenced. by Anders Carlsson · 15 years ago
  40. 4a2c19b Switch default arguments over to InitializationSequence. by Eli Friedman · 15 years ago
  41. a91eb54 Switch file-scope assignment initialization over to InitializationSequence. by Eli Friedman · 15 years ago
  42. 4971ff8 x86_64: Structures with no fields but which have padding should be classified as by Daniel Dunbar · 15 years ago
  43. 0d6d12b When converting from a type to itself or one of its base classes via a by Douglas Gregor · 15 years ago
  44. d6d37de When filling in value initializations within an initializer list, be by Douglas Gregor · 15 years ago
  45. a91320b ARM: Honor -mfpu= and set __VFP_FP__ and __ARM_NEON__ "correctly". by Daniel Dunbar · 15 years ago
  46. 4b52e25 When a template-id refers to a single function template, and the by Douglas Gregor · 15 years ago
  47. 51874dd Allow comparison of 'void *' with function pointer by Fariborz Jahanian · 15 years ago
  48. 0f0615b Fix for PR5840: fix the kind of name lookup used for classes in by Eli Friedman · 15 years ago
  49. 610b0d9 Add tests for structs inside anonymous namespaces. by Anders Carlsson · 15 years ago
  50. 625c1ae Incomplete structs should also have internal linkage. by Anders Carlsson · 15 years ago
  51. 17fa6f9 Correcly handle pointers to member pointer types where the class or the pointee is incomplete. by Anders Carlsson · 15 years ago
  52. d20254f fix PR4010: add support for the warn_unused_result for function pointers by Nuno Lopes · 15 years ago
  53. 6405646 fix PR5500: clang fails to parse inline asm with :: in C++ mode by Chris Lattner · 15 years ago
  54. 5796df9 a really old testcase I apparently forgot to 'svn add'. by Chris Lattner · 15 years ago
  55. 8d14515 Rework the way pointer types are handled by the RTTI builder. We now get the right linkage for indirect pointers to incomplete structs. by Anders Carlsson · 15 years ago
  56. dd4e485 Make sure we instantiate the destructor for variables initialized by assignment. by Eli Friedman · 15 years ago
  57. 745880f Switch default-initialization of variables of class type (or array thereof) over to InitializationSequence. I could swear that this fixes a PR somewhere, but I couldn't figure out which one by Douglas Gregor · 15 years ago
  58. f936815 Don't inject the class name until that magical lbrace. by John McCall · 15 years ago
  59. 84d11c7 Test the lookup I wasn't sure would be done properly after the last patch. by John McCall · 15 years ago
  60. bd0dfa5 Parse base specifiers within the scope of the class. This is possibly not by John McCall · 15 years ago
  61. 7a1dc56 Refactor to remove more dependencies on PreDeclaratorDC. I seem to have made by John McCall · 15 years ago
  62. 731ad84 Just push a new scope when parsing an out-of-line variable definition. by John McCall · 15 years ago
  63. cfdc81a Initialization improvements: addition of string initialization and a few by Eli Friedman · 15 years ago
  64. 2d48e78 A CXXExprWithTemporaries expression is an lvalue if its subexpression by Douglas Gregor · 15 years ago
  65. 910e408 Use the FunctionDecl's result type to know exactly if it returns a reference. by Zhongxing Xu · 15 years ago
  66. 7abfbdb Switch more of Sema::CheckInitializerTypes over to by Douglas Gregor · 15 years ago
  67. 29f1a60 Correctly initialize the PrimaryBaseInfo if a base is null. Fixes PR5832. by Anders Carlsson · 15 years ago
  68. 410a3f3 Unresolved implicit member accesses are dependent if the object type is dependent. by John McCall · 15 years ago
  69. ae03cb5 Teach TryAnnotateTypeOrScopeToken to deal with already-annotated by John McCall · 15 years ago
  70. 27a9b72 Fix for PR5524: make reference binding in default argument work correctly. by Eli Friedman · 15 years ago
  71. c2c0d56 Test for r91724. by Eli Friedman · 15 years ago
  72. 5328751 Enhance GRExprEngine::VisitCallExpr() to be used in an lvalue context. Uncovered a new failing test case along the way, but we're making progress on handling C++ references in the analyzer. by Ted Kremenek · 15 years ago
  73. ff5ce6e Extend code-completion results with the type of each result by Douglas Gregor · 15 years ago
  74. eac7c53 ARM: Fix predefines (__ARM_ARCH_..., __REGISTER_PREFIX). by Daniel Dunbar · 15 years ago
  75. 6f0e485 Fix regression I introduced when dynamic_cast-ing to a reference type. by Anders Carlsson · 15 years ago
  76. 0ddb6f7 It's perfectly fine to see UserDefinedConversion casts when emitting scalar expressions. by Anders Carlsson · 15 years ago
  77. 65c4946 Set up the semantic context correctly when declaring a friend class template. by John McCall · 15 years ago
  78. 1d7c528 Pull Sema::isAcceptableLookupResult into SemaLookup. Extract the criteria into by John McCall · 15 years ago
  79. 38b48af clang -cc1: Rename -mcpu to -target-cpu to match other target options and not alias driver/backend option. by Daniel Dunbar · 15 years ago
  80. 18ef5e2 Switch the initialization required by return statements over to the by Douglas Gregor · 15 years ago
  81. f2d8b9f Add -dwarf-debug-flags, which provides a way to embed the cc1 level options used by Daniel Dunbar · 15 years ago
  82. e24b22b Implemented rewriting of invocation of a block ivar. (radar 7482224). by Fariborz Jahanian · 15 years ago
  83. 81a444a Temporarily XFAIL this test. by Eli Friedman · 15 years ago
  84. 3b29901 Testcase fixes to reflect instruction table changes in the LLVM backend by Sean Callanan · 15 years ago
  85. e129d44 Patch over yet more problems with friend declarations which were provoking by John McCall · 15 years ago
  86. 29da559 Revert r91073. by Mike Stump · 15 years ago
  87. 0a8bab0 implement PR3962: diagnose more faulty cases of usage of the restrict qualifier. this also removes a FIXME by Nuno Lopes · 15 years ago
  88. b23f20d revert part of my last patch, and mark only the c++ global new operator as noalias. the rest will be infered by llvm optz by Nuno Lopes · 15 years ago
  89. a2bf105 reimplement r90860, fixing a couple of problems: by Chris Lattner · 15 years ago
  90. e8820a8 Attempt to fix rtti-layout.cpp on Linux. by Anders Carlsson · 15 years ago
  91. 0a4f186 Add a (currently failing) RTTI layout test. by Anders Carlsson · 15 years ago
  92. d87682e Add failing test case for C++ static analysis. by Ted Kremenek · 15 years ago
  93. 6dd30fc Diagnose duplicate declaration of a property. Fixes PR5809 by Fariborz Jahanian · 15 years ago
  94. adcfab1 Allow pointer convesion of an objective-c pointer to by Fariborz Jahanian · 15 years ago
  95. 5f7157e Fix test. by Eli Friedman · 15 years ago
  96. 2aaad63 Make sure C-specific enum warning doesn't trigger in C++. by Eli Friedman · 15 years ago
  97. ff2d878 Correctly calcluate abstract-ness in the case where an implicitly declared by Eli Friedman · 15 years ago
  98. 7dd4490 Fix test case to unbreak testing by Douglas Gregor · 15 years ago
  99. 16006c9 When value-initializing a class with no user-defined constructors but by Douglas Gregor · 15 years ago
  100. dd69aae Diagnose property of reference type as unsupported instead of crashing for now. by Fariborz Jahanian · 15 years ago