- c4fb221 [ms-inline asm] Hoist more common code into the AsmStmt base class. Add stubs by Chad Rosier · 12 years ago
- 33f0558 [ms-inline asm] Add virtual function, getClobber, that returns a StringRef. by Chad Rosier · 12 years ago
- 5c7f594 [ms-inline asm] Rename getClobber to getClobberStringLiteral. No functional by Chad Rosier · 12 years ago
- da083b2 [ms-inline asm] Rename GenerateAsmString to generateAsmString to conform with by Chad Rosier · 12 years ago
- 066ef86 [ms-inline asm] Hoist common logic into the AsmStmt base class. by Chad Rosier · 12 years ago
- 728581e [ms-inline asm] Add a new base class, AsmStmt, for the GCCAsmStmt and MSAsmStmt by Chad Rosier · 12 years ago
- efe97d6 Use cast<> instead of static_cast. Patch by Timur Iskhodzhanov! by John McCall · 12 years ago
- 2612e9f Fix the mangling of function pointers in the MS ABI. by John McCall · 12 years ago
- df5faf5 [ms-inline asm] As part of a larger refactoring, rename AsmStmt to GCCAsmStmt. by Chad Rosier · 12 years ago
- 9edd2c8 Comment diagnostics: for unresolved parameters, do not suggest parameter fixit by Dmitri Gribenko · 12 years ago
- be3ace8 [ms-inline asm] Refactor code. No functional change intended. by Chad Rosier · 12 years ago
- 3b6bef9 Push ArrayRef through the Expr hierarchy. by Benjamin Kramer · 12 years ago
- 633abb0 [ms-inline asm] Add the basic APIs for Exprs to the MSAsmStmt AST. Next we need by Chad Rosier · 12 years ago
- 70ff109 Comment semantic analysis: treat function typedefs as functions so that one can by Dmitri Gribenko · 12 years ago
- 7dd8860 Attaching comments to decls: since it was decided that Decl::isImplicit should by Dmitri Gribenko · 12 years ago
- 890f0f1 Change a bunch of cases where we do "getAs<...>->doSomething()" to by Ted Kremenek · 12 years ago
- 925d58c array_pod_sort on the addresses of declaration pointers leads to by Douglas Gregor · 12 years ago
- 834a5bd Comment parsing: parse "<blah" as an HTML tag only if "blah" is a known tag by Dmitri Gribenko · 12 years ago
- 4b41c65 ASTContext::getCommentForDecl: add comment. by Dmitri Gribenko · 12 years ago
- 2125c90 Attaching comments to declarations: when documentation is requested for an by Dmitri Gribenko · 12 years ago
- 54c2f88 Fix typo in debug method. by Benjamin Kramer · 12 years ago
- 0ac4ec7 CommentBriefParser: allow paragraphs to be separated by line of whitespace. by Dmitri Gribenko · 12 years ago
- a796b6c Switch some realignment calculations over to llvm::RoundUpToAlignment. by Richard Smith · 12 years ago
- 2e0b8d9 DeclPrinter, terse mode: don't print function bodies by Dmitri Gribenko · 12 years ago
- d1fc82e Rename PrintingPolicy::DontRecurseInDeclContext to PrintingPolicy::TerseOutput by Dmitri Gribenko · 12 years ago
- 88d2f67 Fix alignment of array of VarDecl* following array of unsigned in LambdaExpr. by Richard Smith · 12 years ago
- 929bbfb When performing a trivial copy of a C++ type, we must be careful not by John McCall · 12 years ago
- 49795ae DeclPrinter: add terse output mode and lots of tests by Dmitri Gribenko · 12 years ago
- dce750b Attaching comments to declarations: ignore implicit decls. Decl::isImplicit() by Dmitri Gribenko · 12 years ago
- f0a2649 Fix InitListExpr::isStringLiteralInit so it handles various edge cases correctly. PR13643. by Eli Friedman · 12 years ago
- df4ee10 [ms-inline asm] Remove old cruft now that MS-style asms their own code path. by Chad Rosier · 12 years ago
- 54c86f7 When mangling a negative number, remember that negating it does not by John McCall · 12 years ago
- 1a30edb Fix misaligned allocation of TemplateParameterList objects. by Richard Smith · 12 years ago
- 81c53b4 CommentCommandTraits: rename BeginName -> StartName for consistency. by Dmitri Gribenko · 12 years ago
- 1599eac Attaching comments to declarations: parse the comment in context of the by Dmitri Gribenko · 12 years ago
- d1420c6 Store SourceManager pointer on PrintingPolicy in the case where we're dumping, by Richard Smith · 12 years ago
- 0dae729 Don't constant-fold when pretty-printing alignment attribute. This fixes a by Richard Smith · 12 years ago
- 2f47cab Fix misaligned allocation of QualifiedTempateName and DependentTemplateName. by Richard Smith · 12 years ago
- 058ab17 [ms-inline asm] Add inputs and outputs to AST. No functional change. by Chad Rosier · 12 years ago
- 4e79fdf [analyzer] Correctly devirtualize virtual method calls in constructors. by Jordan Rose · 12 years ago
- 7bd092b [ms-inline asm] Add the left brace source location and improve the pretty by Chad Rosier · 12 years ago
- 4746704 Use the right alignment when allocating NestedNameSpecifier objects. by Richard Smith · 12 years ago
- 97f6026 Fix overallocation and underalignment of ASTTemplateArgumentListInfo objects. by Richard Smith · 12 years ago
- 92570bd [ms-inline asm] Remove the last bits of LineEnds. by Chad Rosier · 12 years ago
- c41ace9 Attaching comments to redeclarations: fix wrong assumptions by Dmitri Gribenko · 12 years ago
- 42c72c2 Do NOT use inline functions with LLVM_ATTRIBUTE_USED. by Benjamin Kramer · 12 years ago
- 7657fd7 PR13570: When an unresolved overloaded call appeared in a dependent context, we by Richard Smith · 12 years ago
- 0d72910 Factor out computation of whether a typeid's expression is potentially by Richard Smith · 12 years ago
- cd81df2 When looking for the comment associated with a declaration, adjust the by Douglas Gregor · 12 years ago
- f50555e Attaching comments to declarations: find comment attached to any redeclaration by Dmitri Gribenko · 12 years ago
- 33c72e1 [ms-inline asm] Avoid extra allocations by making this an array of StringRefs. by Chad Rosier · 12 years ago
- e790bc3 [ms-inline asm] Fix a memory leak introduced in r161686. by Chad Rosier · 12 years ago
- 4399ea9 [ms-inline asm] Add clobbers to AST representation. by Chad Rosier · 12 years ago
- 4ef832f Provide isConst/Volatile on CXXMethodDecl. by David Blaikie · 12 years ago
- cace210 [ms-inline asm] Use StringRef here, per Jordan's suggestion. by Chad Rosier · 12 years ago
- 62290ae Comment to HTML and XML conversion: ignore commands that contain a declaration by Dmitri Gribenko · 12 years ago
- 7b7af02 Add new file CommentCommandTraits.cpp to CMakeLists.txt. by Dmitri Gribenko · 12 years ago
- aa58081 Comment parsing: extract TableGen'able pieces into new CommandTraits class. by Dmitri Gribenko · 12 years ago
- 62f22b8 [ms-inline asm] Refactor the logic to generate the AsmString into Sema. No by Chad Rosier · 12 years ago
- 2aa800a Constify CXXRecordDecl::isVirtuallyDerivedFrom. by Jordan Rose · 12 years ago
- 3a32c9c Add the IsSimple/IsVolatile parameters to the MSAsmStmt constructor. by Chad Rosier · 12 years ago
- 50800fc Implement warning for integral null pointer constants other than the literal 0. by David Blaikie · 12 years ago
- 15631b4 Fix a -ast-dump crash. by Eli Friedman · 12 years ago
- 0e2a868 Whitespace. by Chad Rosier · 12 years ago
- cff339a Comment AST: DeclInfo: add a special kind for enums. by Dmitri Gribenko · 12 years ago
- dd7b803 Comment AST: treat enumerators as "variables" in DeclInfo. by Dmitri Gribenko · 12 years ago
- 60b7038 Update documentation of HasSideEffects to match its callers' expectations, and by Richard Smith · 12 years ago
- 8ae4ec2 Teach Expr::HasSideEffects about all the Expr types, and fix a bug where it by Richard Smith · 12 years ago
- 79efe24 [ms-inline asm] Stmt destructors are never called, so allocate the AsmToks using by Chad Rosier · 12 years ago
- 8a90393 Comment parsing: fix crash on \tparam followed immediately by another block by Dmitri Gribenko · 12 years ago
- 04bf29e Comment AST: DeclInfo: collapse a bunch of boolean flags into an enum. by Dmitri Gribenko · 12 years ago
- 2b1b025 [analyzer] Improve arrow locations for PseudoObjectExprs. by Jordan Rose · 12 years ago
- 8f726de [ms-inline asm] Pass Tokens to Sema and store them in the AST. No functional by Chad Rosier · 12 years ago
- 7d9b511 Comment parser and sema: remove useless return values by Dmitri Gribenko · 12 years ago
- 9443c57 Comment diagnostics: warn on duplicate \brief and \return commands. by Dmitri Gribenko · 12 years ago
- 88815f3 Comment diagnostics: \return in void function: specialize diagnostic text for by Dmitri Gribenko · 12 years ago
- b34eb0c objective-C string literal has no side-effect, by Fariborz Jahanian · 12 years ago
- 51e87c5 Enhance getImplicitObjectArgument to look through ->*. by Jordan Rose · 12 years ago
- 89ab7d0 Comment diagnostics: warn if \returns is used in a non-function comment or if by Dmitri Gribenko · 12 years ago
- c23aca4 Flesh out test for defaulted key functions a bit more. by Benjamin Kramer · 12 years ago
- f3fce80 Fix failed to generate vtables in certain cases. by Benjamin Kramer · 12 years ago
- 5b32a08 Comment AST: convert a huge if -- else if statement on Decl's type into a by Dmitri Gribenko · 12 years ago
- af19a6a Comments AST: refactor DeclInfo to use an enum for decl kind instead of by Dmitri Gribenko · 12 years ago
- 967e5d7 Comments: handle template paramter documentation in alias-declaration templates. by Dmitri Gribenko · 12 years ago
- c27bc80 Attaching comments to declarations: handle using-declaration. by Dmitri Gribenko · 12 years ago
- 1abee64 ASTContext.h: replace include by a forward declaration. by Dmitri Gribenko · 12 years ago
- 651f8ce Initialize flag in DeclInfo. by Dmitri Gribenko · 12 years ago
- 1ca7ecc Comment AST: add DeclInfo to store information about the declaration. Sema was by Dmitri Gribenko · 12 years ago
- 96b0986 Comment parsing: add support for \tparam command on all levels. by Dmitri Gribenko · 12 years ago
- 9849901 Consider the visibility of template template arguments. GCC doesn't, but it also by Rafael Espindola · 12 years ago
- ca93ee7 Mark ObjCInterfaceDecl::lookupPrivateMethod as const. by Anna Zaks · 13 years ago
- e5deb79 Comment parser: don't crash on a completely empty \param followed by a block by Dmitri Gribenko · 13 years ago
- c109361 Comment dumper: silence a warning by not casting away const by Dmitri Gribenko · 13 years ago
- 2cd7f41 Fix ambiguity detection in GetBestOverloadCandidateSimple. by Benjamin Kramer · 13 years ago
- 72b57cc Comment dumper: print \param parameter index if parameter name is resolved. by Dmitri Gribenko · 13 years ago
- 0ba5880 CommentSema.cpp: remove extra semicolon by Dmitri Gribenko · 13 years ago
- bbb7af3 Comment Sema: don't try to typo-correct a \param when function has zero by Dmitri Gribenko · 13 years ago
- 477a9f5 Implement resolving of HTML character references (named: &, decimal: *, by Dmitri Gribenko · 13 years ago
- e61354b Consolidate ObjC lookupPrivateMethod methods from Sema and DeclObjC. by Anna Zaks · 13 years ago
- 11abf2a clang/lib: [CMake] Update tblgen'd dependencies. by NAKAMURA Takumi · 13 years ago