Age | Commit message (Expand) | Author |
2009-08-01 | More warnings for unused expressions. | Anders Carlsson |
2009-07-30 | Diagnose unused expression results for all statements, just not compound stat... | Anders Carlsson |
2009-07-30 | Factor code out into a DiagnoseUnusedExprResult function. | Anders Carlsson |
2009-07-29 | Change uses of: | Ted Kremenek |
2009-07-29 | Check for identical types in C++ catch expression. Patch by Erik Verbruggen. | Sebastian Redl |
2009-07-17 | Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods | Ted Kremenek |
2009-07-16 | Add member template 'Type::getAs<T>', which converts a Type* to a respective T*. | Ted Kremenek |
2009-07-16 | Remove ASTContext::isObjCObjectPointerType(). | Steve Naroff |
2009-06-30 | Remove the ASTContext parameter from the attribute-related methods of Decl. | Argyrios Kyrtzidis |
2009-06-24 | Support for [class.local]p4. | Anders Carlsson |
2009-06-24 | [class.local] p1 and p3. Also, add back the xcodeproj file. | Anders Carlsson |
2009-06-19 | Use QualType to represent block's implicit return type as | Fariborz Jahanian |
2009-06-18 | Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>. | Douglas Gregor |
2009-06-12 | add the location of the ')' in a do/while statement to DoStmt. | Chris Lattner |
2009-05-31 | Downgrade an error about "return in a no-return function" from being | Chris Lattner |
2009-05-30 | ActOnReturnStmt should also take a FullExprArg. | Anders Carlsson |
2009-05-21 | Use v.data() instead of &v[0] when SmallVector v might be empty. | Jay Foad |
2009-05-17 | Make ActOnWhileStmt take a FullExprArg for the condition expr. | Anders Carlsson |
2009-05-17 | Make ActOnExprStmt take a FullExprArg. | Anders Carlsson |
2009-05-17 | Add the FullExprArg wrapper and use it for if statement conditions. | Anders Carlsson |
2009-05-16 | Reflow some comments. | Mike Stump |
2009-05-16 | Template instantiation for IndirectGotoStmt. Now my life is complete. | Douglas Gregor |
2009-05-15 | Template instantiation for switch statements | Douglas Gregor |
2009-05-15 | Template instantiation for "for" loops | Douglas Gregor |
2009-05-15 | Template instantiation for do-while statements. | Douglas Gregor |
2009-05-15 | Template instantiation for WhileStmt and CXXConditionDeclExpr. | Douglas Gregor |
2009-05-15 | Template instantiation for "if" statements. Also: | Douglas Gregor |
2009-05-15 | Instantiate return statements. | Anders Carlsson |
2009-05-03 | allow references to the larger value in a tied constraint | Chris Lattner |
2009-05-03 | code cleanup, avoid shadowing i. | Chris Lattner |
2009-05-03 | Don't insert an extra ParenExpr around asm operands. | Eli Friedman |
2009-05-03 | If we have mismatched integer tied operands, but the operand | Chris Lattner |
2009-05-03 | avoid a crash when we encounter a implicit cast of the paren expr due to | Chris Lattner |
2009-05-03 | rename some variables, improve comments. | Chris Lattner |
2009-05-03 | refactor matched operand type checking to happen after the AsmStmt is created, | Chris Lattner |
2009-05-01 | Replace more release+static_cast with takeAs. | Anders Carlsson |
2009-05-01 | Replace a bunch of static_cast + release with takeAs. | Anders Carlsson |
2009-04-29 | Fixup Sema and CodeGen for block literal attributes when the return | Mike Stump |
2009-04-29 | Sema and CodeGen support for attributes on blocks. Radar 6441502 | Mike Stump |
2009-04-29 | Implement sema checking for noreturn. | Mike Stump |
2009-04-27 | Improve validation of C++ exception handling: diagnose throwing incomplete ty... | Sebastian Redl |
2009-04-26 | implement PR4077: [Linux kernel] inscrutable error on inline asm input/output... | Chris Lattner |
2009-04-26 | in a tied operand, don't copy over the name or constraint string, just the fl... | Chris Lattner |
2009-04-26 | pull operands names "[foo]" into ConstraintInfo. | Chris Lattner |
2009-04-26 | pull the constraint string into the ConstraintInfo struct | Chris Lattner |
2009-04-26 | change TargetInfo::ConstraintInfo to be a struct that contains | Chris Lattner |
2009-04-26 | split ObjC and C++ Statements out into their own headers. | Chris Lattner |
2009-04-21 | implement semantic analysis for @synchronized, fixing a crash on invalid | Chris Lattner |
2009-04-21 | add support for goto checking and @synchronized blocks, | Chris Lattner |
2009-04-19 | add a new Sema::CurFunctionNeedsScopeChecking bool that is used to avoid | Chris Lattner |