Age | Commit message (Expand) | Author |
2008-03-15 | Make a major restructuring of the clang tree: introduce a top-level | Chris Lattner |
2008-03-05 | remove the source location arguments to various target query methods. | Chris Lattner |
2008-02-27 | Removed VarDecl::hasStaticStorage() (redundant with hasGlobalStorage()) | Ted Kremenek |
2008-02-21 | implement codegen support for sizeof(void), fixing PR2080. | Chris Lattner |
2008-02-20 | Alternate address spaces work: | Chris Lattner |
2008-02-18 | Tweak fix for http://llvm.org/bugs/show_bug.cgi?id=2000 to work across typedefs. | Steve Naroff |
2008-02-18 | Fix bug where we would report the wrong value for __alignof__ with an expr th... | Anders Carlsson |
2008-02-16 | Make sizeof and __alignof work correctly with packed structs. | Anders Carlsson |
2008-02-15 | Remove useless parameter from isConstantSizeType. | Eli Friedman |
2008-02-13 | Fix a minor bug in isNullPointerConstant triggered by the linux | Eli Friedman |
2008-02-13 | Move IgnoreParenCasts to be a method on Expr. | Chris Lattner |
2008-02-10 | Refine bug fix to Expr::isLvalue (commit r46917). | Steve Naroff |
2008-02-10 | Change Expr::isLvalue() to allow the "void" type. This fixes bz2000 submitted... | Steve Naroff |
2008-01-31 | Make CallExpr::isBuiltinConstantExpr slightly more efficient. | Anders Carlsson |
2008-01-31 | Add support for CallExpr::isBuiltinConstantExpr(). For now, this hook is used... | Steve Naroff |
2008-01-30 | Implement first round of feedback on __builtin_overload | Nate Begeman |
2008-01-29 | Implement __builtin_offsetof. | Anders Carlsson |
2008-01-25 | fix isIntegerConstantExpr evaluation of unary !. | Chris Lattner |
2008-01-25 | Support checking and codegen of constant vector globals | Nate Begeman |
2008-01-17 | Implement basic overload support via a new builtin, __builtin_overload. | Nate Begeman |
2008-01-17 | Added method Expr::IgnoreParens(), which returns the first non-ParenExpr Expr*. | Ted Kremenek |
2008-01-14 | Record if a compound literal expression is @ file scope. This allows us to im... | Steve Naroff |
2008-01-14 | Revert r45951, Chris says it violates the C99 spec. | Steve Naroff |
2008-01-14 | Rewrite Expr::isNullPointerConstant() to deal with multiple levels of explici... | Steve Naroff |
2008-01-12 | Fix the type of predefined identifiers like __func__. Patch by | Chris Lattner |
2008-01-10 | - Teach Expr::isConstantExpr() about InitListExpr's (and offsetof, since I no... | Steve Naroff |
2008-01-09 | Fix isIntegerConstantExpr to compare against zero for casts to bool instead of | Chris Lattner |
2008-01-09 | Teach Expr::isConstantExpr() about CompoundLiterals. | Steve Naroff |
2008-01-07 | Substituted all instances of the string "Objc" for "ObjC". This fixes | Ted Kremenek |
2008-01-02 | Fix PR1895: a crash on an ugly gcc extension. | Chris Lattner |
2007-12-29 | Don't attribute in file headers anymore. See llvmdev for the | Chris Lattner |
2007-12-28 | Add accessors + iterator interface. | Chris Lattner |
2007-12-18 | Fix the location we emit the "not a constant" error for this: | Chris Lattner |
2007-12-17 | Fixed another case where sizeof() returns the size in bytes, not bits. | Ted Kremenek |
2007-12-15 | Removed "isSizeOfExpr" mode from StmtIterator. It turned out not to be | Ted Kremenek |
2007-12-14 | Added "mode" to StmtIterator to record if the expression being iterated | Ted Kremenek |
2007-12-14 | Added support to StmtIterator to traverse the size expression of a VLA type | Ted Kremenek |
2007-12-12 | TargetInfo no longer includes a reference to SourceManager. | Ted Kremenek |
2007-12-11 | Fix a case where we'd return "is not a constant expr" without | Chris Lattner |
2007-12-05 | Recognize CompoundLiteralExpr's as valid lvalue's. | Steve Naroff |
2007-12-01 | Compute side-effect for conditional expression. | Fariborz Jahanian |
2007-12-01 | make the unused expression warning less noisy by not warning about comma expr... | Chris Lattner |
2007-11-30 | String literals are always valid LValues. | Anders Carlsson |
2007-11-30 | GCC has an extension where the left hand side of the ? : operator can be omit... | Anders Carlsson |
2007-11-28 | fix compilation error noticed by Nuno Lopes | Chris Lattner |
2007-11-27 | add several cases that Expr::hasStaticStorage missed, pointed out by Oliver Hunt | Chris Lattner |
2007-11-27 | sizeof is defined by bitsin(char) not by units of 8 bits. | Chris Lattner |
2007-11-25 | sizeof() return size in bytes, not bits, patch by Nuno Lopes! | Chris Lattner |
2007-11-15 | Finish up variadic methods/messages. | Steve Naroff |
2007-11-13 | improve handling of address of global when checking for | Chris Lattner |