1. d4dca08 Rework parsing of pseudo-destructor expressions and explicit by Douglas Gregor · 15 years ago
  2. 5edcc37 Generate correct vcall offsets when we have a primary virtual base that is not a primary base in the complete class hierarchy. by Anders Carlsson · 15 years ago
  3. f604a56 References to const int parameters with ICE default arguments are not ICEs. by John McCall · 15 years ago
  4. 0b0ef0a Canonicalize parameter and return types before computing ABI info. Eliminates by John McCall · 15 years ago
  5. 328ce34 When we encounter a function-specific attribute in a declaration specifier, by Charles Davis · 15 years ago
  6. 9107166 Always add CallExpr as block-level expression. Inline-based interprocedural by Zhongxing Xu · 15 years ago
  7. 86aa9fd Fix rewriting of a method when return type is by Fariborz Jahanian · 15 years ago
  8. 87260c7 Add support for '%C' and '%S' printf conversion specifiers. by Ted Kremenek · 15 years ago
  9. f914b97 More Sema check for ivars in class continuation. by Fariborz Jahanian · 15 years ago
  10. 70c23cd Emit debug info for VectorType. by Devang Patel · 15 years ago
  11. 11e8ce7 Add support for the weakref attribute. We still produce "alias weak" as llvm-gcc does, but are more strict on what uses of weakref we accept. by Rafael Espindola · 15 years ago
  12. 2a7eb28 Unconditionally support block introspection data in a new field at the end by Blaine Garst · 15 years ago
  13. 5f1c45f Fixes a rewriting of qualified-id type which exposed a bigger by Fariborz Jahanian · 15 years ago
  14. 8913220 Dead emit dead store warnings when assigning nil to an ObjC object by Ted Kremenek · 15 years ago
  15. 09b6897 Fix another crash on invalid code. In this case, handle ObjC categories (with no names) by Ted Kremenek · 15 years ago
  16. c0cd21d Don't assert on compound assignment operators that operate in FP types when by John McCall · 15 years ago
  17. 5370ee2 Make previous fix handle a few more edge cases. by Eli Friedman · 15 years ago
  18. b1162f1 PR6400: Handle an extreme edge case in mangling correctly. by Eli Friedman · 15 years ago
  19. 18da88a PR6386: Fix a recent regression in IRGen of cast-to-union constructs. by Eli Friedman · 15 years ago
  20. 33efe2f Retain attributes for K&R style parameter declarations. by Richard Pennington · 15 years ago
  21. f9fbc71 Implement IsOverriderUsed. This can't be tested yet due to some other bugs :) by Anders Carlsson · 15 years ago
  22. 064f7db When comparing two calling conventions after redeclaring a function, compare by Charles Davis · 15 years ago
  23. 72919a3 Move the rest of the unreachable code analysis from libSema by Ted Kremenek · 15 years ago
  24. 8de3cc6 Simplify check for basic block with a CXXTryStmt terminator. by Ted Kremenek · 15 years ago
  25. 05f6247 When a reference to a field of a struct/union/class is passed to the by Charles Davis · 15 years ago
  26. 464c8f1 Stub out IsOverriderUsed. by Anders Carlsson · 15 years ago
  27. af280c0 More fixes. Don't try to emit a virtual base vtable if the virtual base in question is a primary virtual base of some other base. by Anders Carlsson · 15 years ago
  28. 92f5432 Always emit vcall offset for the primary base, not only if it's virtual. Remove a debug printf, and add the test case that now passes. by Anders Carlsson · 15 years ago
  29. cc6bcbb Simplify the vcall offset calculation and make it give the correct answers :) My test case now has the right values but in the wrong order. by Anders Carlsson · 15 years ago
  30. a455c80 More work on vcall offsets. We now emit the right number of vcall offsets in my local test case, but not the right values. by Anders Carlsson · 15 years ago
  31. 3d2eed8 Start moving some of the logic for the unreachable code analysis out of libSema by Ted Kremenek · 15 years ago
  32. f067d8e Convert use of std::queue to llvm::SmallVector and fix buildbot. by Ted Kremenek · 15 years ago
  33. 2fca9be Move BaseOffset out of the FinalOverriders class. by Anders Carlsson · 15 years ago
  34. 0e5ad25 More support for ivars in class extension. by Fariborz Jahanian · 15 years ago
  35. 133a6aa Use SmallVectorImpl::iterator. by Ted Kremenek · 15 years ago
  36. 1e025f2 Simplify logic for determining values of 'ReturnsVoid' and 'HasNoReturn' flags. by Ted Kremenek · 15 years ago
  37. c0bf462 Perform two more constructor/destructor code-size optimizations: by John McCall · 15 years ago
  38. 93649fd Implement crazy destructor name lookup semantics differently in by Douglas Gregor · 15 years ago
  39. 83c481a Early support for declaring ivars in class extensions. wip. by Fariborz Jahanian · 15 years ago
  40. 1d35b16 Fixes a rewriting of byref variable when its initializer is by Fariborz Jahanian · 15 years ago
  41. fdd8ab1 Don't assert that we have a valid access specifier on an invalid by Douglas Gregor · 15 years ago
  42. 325bf17 Set access specifiers on imported declarations. by Douglas Gregor · 15 years ago
  43. bf1764c Do not require a complete type when checking for a pointer conversion by Douglas Gregor · 15 years ago
  44. 12a9109 Change the name of the vtable-debugging environment variable to by Douglas Gregor · 15 years ago
  45. aef605d Don't use NamedDecl::getNameAsCString() when dealing with C++ methods, by Douglas Gregor · 15 years ago
  46. c3daac5 Revert "Simplify code: Succ is guaranteed to be not NULL.", which turns out to by Daniel Dunbar · 15 years ago
  47. 8414a8c Simplify code: Succ is guaranteed to be not NULL. by Zhongxing Xu · 15 years ago
  48. d84aac1 Add 'previous declaration is here' note for param redefinition errors, e.g.: by Chris Lattner · 15 years ago
  49. ce056bc Eliminate the default arguments to ASTContext::getFunctionType(), by Douglas Gregor · 15 years ago
  50. b10cd04 Implement support for parsing pseudo-destructor expression with a nested-name-specifier, e.g., by Douglas Gregor · 15 years ago
  51. 1211606 A constructor template cannot be used to copy to an object of the same class type (per C++ [class.copy]p3). Make sure that includes copies that involve a derived-to-base conversion. Fixes PR6141. by Douglas Gregor · 15 years ago
  52. c144f35 Implement AST import for C++ member functions, including constructors, destructors, and conversions. Unfortunately, this cannot be tested yet, since we don't have C++ PCH support. by Douglas Gregor · 15 years ago
  53. 788c62d Implement AST importing for C++ namespaces. by Douglas Gregor · 15 years ago
  54. 083a821 Collect the code that imports all of the members of a declaration context into a single function, ImportDeclContext. Use it rather than explicit loops. No functionality change. by Douglas Gregor · 15 years ago
  55. 0cef483 Implement PCH support for C++ namespaces. by Douglas Gregor · 15 years ago
  56. 5e895a8 Commiting a revert from dgregor of a bit of destructor logic until we can by Chandler Carruth · 15 years ago
  57. 8761d68 Make Decl::isOutOfLine() virtual, and use that to determine when definitions by Chandler Carruth · 15 years ago
  58. 48108fd Clang really intends to reject attribute 'warn_unused_result' on Objective-C methods, but by Ted Kremenek · 15 years ago
  59. 240670c Don't emit a warning about a dllimport attribute being used in a typedef by Ted Kremenek · 15 years ago
  60. 12911a8 Don't warn about functions redeclared without the dllimport attribute when by Ted Kremenek · 15 years ago
  61. bd94d44 Start supporting declaration of ivars in @implementation blocks. WIP. by Fariborz Jahanian · 15 years ago
  62. 1f46466 Add the CK_UnusedFunctionPointer component kind for unused function pointers. by Anders Carlsson · 15 years ago
  63. 354095c Issue extended diagnostic when property dot-syntax is used and by Fariborz Jahanian · 15 years ago
  64. 3c3aaf9 Only parse C++0x attribute specifiers in declarators when in C++0x by Douglas Gregor · 15 years ago
  65. 36262b8 Implement C++ name lookup for instance variables of Objective-C classes by Douglas Gregor · 15 years ago
  66. c5e77d5 Make Sema::ActOnClassMessage robust when name lookup for the receiver by Douglas Gregor · 15 years ago
  67. 9fc6a77 More refactoring around constructor/destructor code generation. by John McCall · 15 years ago
  68. 6065e02 Dump this-adjustments for destructors as well. by Anders Carlsson · 15 years ago
  69. d0c2ec4 Enable -mconstructor-aliases by default on non-darwin platforms. by John McCall · 15 years ago
  70. ba7bc55 Revert: "Change InitListExpr to allocate the array for holding references" by Ted Kremenek · 15 years ago
  71. 0e12b44 Add a missing break. Cocoa.h can now be merged twice into the same AST context by Douglas Gregor · 15 years ago
  72. d46f985 Re-introduce the ctor/dtor alias optimization, this time hidden behind a by John McCall · 15 years ago
  73. 008847a AST import for CStyleCastExpr. With this, we can import Cocoa.h into an empty context by Douglas Gregor · 15 years ago
  74. bd249a5 AST import for sizeof and alignof expressions by Douglas Gregor · 15 years ago
  75. 4408063 AST import for DeclRefExprs by Douglas Gregor · 15 years ago
  76. f638f95 AST import of parenthesized expressions, unary operators, binary by Douglas Gregor · 15 years ago
  77. 9f9269e Change InitListExpr to allocate the array for holding references by Ted Kremenek · 15 years ago
  78. b9c903b Use a little binary header in serialized diagnostics to help the deserializer skip over noise in the stream by Douglas Gregor · 15 years ago
  79. 11062e1 Patch removes IVars list from ObjCInterfaceDecl and by Fariborz Jahanian · 15 years ago
  80. c0ea885 remove unused function & enumerations by Blaine Garst · 15 years ago
  81. 313e26c Teach ASTUnit to keep track of temporary files, then delete them when by Douglas Gregor · 15 years ago
  82. 0a812cf Re-apply my diagnostics-capture patch for CIndex, with some tweaks to by Douglas Gregor · 15 years ago
  83. 9e04935 Allow GNU attributes to appear in an Objective-C method declaration by Ted Kremenek · 15 years ago
  84. 8e51a1f Revert the ctor/dtor alias optimization for now; the buildbots can detect by John McCall · 15 years ago
  85. b372b0f Fixed a crash specific to blocks in c++ uncovered by an internal test suite. by Fariborz Jahanian · 15 years ago
  86. 3b47733 Make deleting and complete dtor variants defer to other dtor variants by by John McCall · 15 years ago
  87. 71b202e Attempt to fix the 32-bit test failures. by Anders Carlsson · 15 years ago
  88. a88084b Rework how CIndex handles diagnostics. Rather than using a callback, by Douglas Gregor · 15 years ago
  89. 8b6765f Fix another bug and add another class. by Anders Carlsson · 15 years ago
  90. eb577d0 More work on vcall offsets. by Anders Carlsson · 15 years ago
  91. 60cc72a Start stubbing out vcall offset handling. by Anders Carlsson · 15 years ago
  92. 96309c4 Store the base offset of the final overrider in the OverriderInfo struct, to be used for vcall offsets. by Anders Carlsson · 15 years ago
  93. 588f91a Remove some dead code. by Anders Carlsson · 15 years ago
  94. bb2d176 Try to fix the auroraux buildbot. I suspect it has a "#define SEC" somewhere. by Benjamin Kramer · 15 years ago
  95. e01c063 Also don't warn about force_align_arg_pointer on function typedefs. (This will by Charles Davis · 15 years ago
  96. beaf5ed Two fixes related to force_align_arg_pointer: by Charles Davis · 15 years ago
  97. 9329800 Add some spacing in the code-completion results for a return statement by Douglas Gregor · 15 years ago
  98. a355e07 Extract out function-body code generation into its own method. No functionality by John McCall · 15 years ago
  99. 63e5d7c Change the behavior of ibaction attributes to be attached to methods, not ivars. by Ted Kremenek · 15 years ago
  100. b2e400a AST import for character literals by Douglas Gregor · 15 years ago