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