| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add support for the OpenCL vec_step operator, by generalising and | Peter Collingbourne | 2011-03-11 | 1 | -5/+7 |
| * | When doing reachability analysis for warnings issued under DiagRuntimeBehavio... | Ted Kremenek | 2011-03-10 | 1 | -4/+32 |
| * | Require AddStmtChoice::alwaysAdd() to take a CFGBuilder& and Stmt*. Prep for... | Ted Kremenek | 2011-03-10 | 1 | -15/+22 |
| * | Remove unused 'AddStmtChoice' argument to CFGBuilder::appendStmt(). | Ted Kremenek | 2011-03-10 | 1 | -25/+24 |
| * | Rework interaction between AnalysisContext and CFG::BuildOptions to keep a Bu... | Ted Kremenek | 2011-03-10 | 1 | -17/+13 |
| * | Fix null dereference in CFGBlock::FilterEdge that was reported in PR 9412. | Ted Kremenek | 2011-03-07 | 1 | -5/+5 |
| * | Correctly handle nested switch statements in CFGBuilder when on switch statem... | Ted Kremenek | 2011-03-04 | 1 | -11/+12 |
| * | Teach CFGImplicitDtor::getDestructorDecl() about arrays of objects with destr... | Ted Kremenek | 2011-03-03 | 1 | -3/+7 |
| * | Teach CFGImplicitDtor::getDestructorDecl() about reference types. | Ted Kremenek | 2011-03-03 | 1 | -2/+3 |
| * | Let's go with John and Ted's preferred fix. | Matt Beaumont-Gay | 2011-03-03 | 1 | -1/+2 |
| * | Keep GCC from complaining about falling off the end of the function. | Matt Beaumont-Gay | 2011-03-02 | 1 | -0/+1 |
| * | Introduce CFGImplicitDtor::isNoReturn() to query whether a destructor actuall... | Ted Kremenek | 2011-03-02 | 1 | -1/+34 |
| * | Teach CFGBuilder to prune trivially unreachable case statements. | Ted Kremenek | 2011-03-01 | 1 | -38/+106 |
| * | In preparation for fixing PR 6884, rework CFGElement to have getAs<> return p... | Ted Kremenek | 2011-03-01 | 1 | -46/+70 |
| * | Get rid of the areExceptionsEnabled() getter from LangOptions. | Anders Carlsson | 2011-02-28 | 1 | -1/+1 |
| * | Fix tiny error in CFG construction for BinaryConditionalOperators, making sur... | Ted Kremenek | 2011-02-24 | 1 | -12/+14 |
| * | Teach CFGBuilder about null pointer constants in conditionals, and how they c... | Ted Kremenek | 2011-02-23 | 1 | -3/+11 |
| * | Fix a CFGBuilder bug exposed on convoluted control-flow in the Linux kernel. | Ted Kremenek | 2011-02-21 | 1 | -5/+8 |
| * | Add a LangOptions::areExceptionsEnabled and start using it. | Anders Carlsson | 2011-02-20 | 1 | -1/+1 |
| * | Fix a -Wuninitialized warning; it's actually a false positive, | John McCall | 2011-02-19 | 1 | -2/+10 |
| * | Change the representation of GNU ?: expressions to use a different expression | John McCall | 2011-02-17 | 1 | -43/+45 |
| * | Step #1/N of implementing support for __label__: split labels into | Chris Lattner | 2011-02-17 | 1 | -12/+13 |
| * | Fix memory leak in CFGBuilder resulting from tracking scope information using... | Ted Kremenek | 2011-02-15 | 1 | -7/+10 |
| * | Give some convenient idiomatic accessors to Stmt::child_range and | John McCall | 2011-02-13 | 1 | -6/+4 |
| * | Change QualType::getTypePtr() to return a const pointer, then change a | John McCall | 2011-01-19 | 1 | -6/+6 |
| * | Renamed CXXBaseOrMemberInitializer to CXXCtorInitializer. This is both shorter, | Alexis Hunt | 2011-01-08 | 1 | -4/+4 |
| * | Fix crash in CFGBuilder on invalid code. We still need | Ted Kremenek | 2011-01-07 | 1 | -20/+23 |
| * | Rename several methods/functions in the analyzer | Ted Kremenek | 2010-12-17 | 1 | -78/+78 |
| * | Start migration of static analyzer to using the | Ted Kremenek | 2010-12-16 | 1 | -87/+44 |
| * | Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical | John McCall | 2010-12-06 | 1 | -10/+10 |
| * | More anonymous struct/union redesign. This one deals with anonymous field use... | Francois Pichet | 2010-12-04 | 1 | -2/+2 |
| * | Although we currently have explicit lvalue-to-rvalue conversions, they're | John McCall | 2010-12-04 | 1 | -2/+19 |
| * | print asLValue attribute of CFGStmt. | Zhongxing Xu | 2010-11-24 | 1 | -0/+3 |
| * | Refactor AddStmtChoice to make it easier to use; also add comments on how the... | Zhanyong Wan | 2010-11-24 | 1 | -49/+57 |
| * | Stylistic changes to CFG.cpp: | Zhanyong Wan | 2010-11-22 | 1 | -24/+22 |
| * | Fix PR8419. Reviewed by kremenek and xuzhongxing. | Zhanyong Wan | 2010-11-22 | 1 | -0/+17 |
| * | Remove invalid assertion from CFG builder. When building the CFG pieces for ... | Ted Kremenek | 2010-11-15 | 1 | -1/+2 |
| * | Revert r118991. | Zhongxing Xu | 2010-11-14 | 1 | -8/+1 |
| * | Do not add implicit dtors for CXXBindTemporaryExpr with elidable | Zhongxing Xu | 2010-11-13 | 1 | -1/+8 |
| * | Do not add elidable CXXConstructExpr as block-level expr. | Zhongxing Xu | 2010-11-03 | 1 | -1/+2 |
| * | Added generating destructors for temporary objects. Two cases I know of, that... | Marcin Swiderski | 2010-11-03 | 1 | -31/+295 |
| * | Explicitly handle CXXBindTemporaryExpr, CXXFunctionalCastExpr, | Zhongxing Xu | 2010-11-01 | 1 | -0/+51 |
| * | Make all CXXConstructExpr's block-level expressions. This is required by | Zhongxing Xu | 2010-11-01 | 1 | -1/+28 |
| * | Added CFGTerminator class, that holds information about CFGBlock terminator s... | Marcin Swiderski | 2010-10-29 | 1 | -5/+5 |
| * | If visiting RHS causes us to finish 'Block', e.g. the RHS is a StmtExpr | Zhongxing Xu | 2010-10-27 | 1 | -3/+8 |
| * | Added generation of destructors for member constant size arrays. | Marcin Swiderski | 2010-10-25 | 1 | -2/+15 |
| * | Added generation of destructors for constant size arrays. | Marcin Swiderski | 2010-10-25 | 1 | -2/+10 |
| * | - Fixed subexpressions evaluation order for binary operators to match order i... | Marcin Swiderski | 2010-10-24 | 1 | -7/+9 |
| * | * Simplify code | Zhongxing Xu | 2010-10-05 | 1 | -10/+10 |
| * | Added support for base and member destructors in destructor. | Marcin Swiderski | 2010-10-05 | 1 | -0/+62 |