Age | Commit message (Expand) | Author |
2011-01-04 | Rename MaybeSkipFunctionBodyForCodeCompletion -> trySkippingFunctionBodyForCo... | Argyrios Kyrtzidis |
2011-01-03 | When in code-completion, skip obj-c method bodies for speed up. | Argyrios Kyrtzidis |
2011-01-03 | Speed up code-completion by skipping function bodies. | Argyrios Kyrtzidis |
2010-12-24 | Refactor how we collect attributes during parsing, and add slots for attributes | John McCall |
2010-12-23 | Improve the diagnostic and recovery for missing colons after 'case' | Douglas Gregor |
2010-12-04 | Although we currently have explicit lvalue-to-rvalue conversions, they're | John McCall |
2010-12-02 | Fixed source range for MS asm statement. | Abramo Bagnara |
2010-11-20 | Revert r119838 "Don't warn for empty 'if' body if there is a macro that expan... | Argyrios Kyrtzidis |
2010-11-19 | Don't warn for empty 'if' body if there is a macro that expands to nothing, e.g: | Argyrios Kyrtzidis |
2010-11-10 | Region-allocate all AttributeList objects from a factory object instead of ma... | Ted Kremenek |
2010-11-02 | Properly handle temporaries that are created in a AsmStmt. | Argyrios Kyrtzidis |
2010-11-01 | Clean up temporaries created by an asm statement. Fixes rdar://8540491 | Argyrios Kyrtzidis |
2010-09-28 | vla expressions used in __typeof__ must be evaluated. | Fariborz Jahanian |
2010-09-28 | Don't warn for an unused label if it has 'unused' attribute. Fixes rdar://848... | Argyrios Kyrtzidis |
2010-09-15 | Implement bracket insertion for Objective-C instance message sends as | Douglas Gregor |
2010-09-07 | Improve recovery when there is a stray ']' or ')' before the ';' at | Douglas Gregor |
2010-09-01 | when emitting an error about a missing } in a compound statement, emit | Chris Lattner |
2010-08-30 | Revert my user-defined literal commits - r1124{58,60,67} pending | Sean Hunt |
2010-08-29 | Implement C++0x user-defined string literals. | Sean Hunt |
2010-08-26 | One who seeks knowledge learns something new every day. | John McCall |
2010-08-24 | OwningExprResult -> ExprResult. This patch brought to you by | John McCall |
2010-08-23 | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall |
2010-08-23 | Introduce a code-completion hook for the Objective-C collection | Douglas Gregor |
2010-08-23 | Sundry incremental steps towards killing off Action. | John McCall |
2010-08-21 | DeclPtrTy -> Decl * | John McCall |
2010-08-20 | Another step in the process of making the parser depend on Sema: | John McCall |
2010-08-17 | Add a slightly better hack for microsoft style inline asm, | Chris Lattner |
2010-08-11 | Once code completion has completed, pass a "completion context" on to | Douglas Gregor |
2010-08-06 | Remove ElseScope which is also dead code now. | Nick Lewycky |
2010-07-22 | Fix PR7673 by allowing an empty clobbers section in an ASM statement. | Chandler Carruth |
2010-07-02 | Move the "current scope" state from the Parser into Action. This | Douglas Gregor |
2010-06-17 | Make sure parens/braces/brackets are correctly balanced. | Argyrios Kyrtzidis |
2010-05-30 | Teach code completion to adjust its completion priorities based on the | Douglas Gregor |
2010-05-28 | Make -code-completion-patterns only cover multi-line code | Douglas Gregor |
2010-05-25 | Improve code completion in failure cases in two ways: | Douglas Gregor |
2010-05-20 | Improve parser recovery when a switch condition is invalid; fixes | Douglas Gregor |
2010-05-06 | Fixed DISABLE_SMART_POINTERS breakage | Douglas Gregor |
2010-05-06 | Rework our handling of temporary objects within the conditions of | Douglas Gregor |
2010-04-12 | change Scope::WithinElse to be a normal scope flag, widen the | Chris Lattner |
2010-04-05 | fix PR6782, an accept invalid. We weren't emitting the diagnostic | Chris Lattner |
2010-03-31 | Don't skip past the '}' if an expression has error and is not followed by ';'. | Argyrios Kyrtzidis |
2010-02-11 | Clean up ownership of 'AttributeList' objects in Parser. Apparently | Ted Kremenek |
2010-01-30 | Use IdentifierInfo * instead of std::string for the AsmStmt names. | Anders Carlsson |
2010-01-24 | fix PR6034, a crash on invalid where the switch stack would get | Chris Lattner |
2010-01-10 | Improve code completion by introducing patterns for the various C and | Douglas Gregor |
2010-01-04 | Remember if the AsmStmt came from Microsoft-style inline assembly code. | Mike Stump |
2009-12-20 | fix PR5500: clang fails to parse inline asm with :: in C++ mode | Chris Lattner |
2009-12-20 | refactor asm stmt parsing to avoid nesting as much, and | Chris Lattner |
2009-12-16 | Check in a rudimentary FullExpr class that isn't used anywhere yet. Rename Ac... | Anders Carlsson |
2009-12-11 | Implement just a bit more of inline assembly. | Mike Stump |