summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* Set UNIVERSAL_ARCH value.Devang Patel2008-10-061-1/+2
* Fix PR2850 and PR2863. Only generate movddup for 128-bit SSE vector shuffles.Evan Cheng2008-10-062-0/+13
* Use DeclStmt::getSolitaryDecl() instead of DeclStmt::getDecl() when processin...Ted Kremenek2008-10-061-3/+3
* Use DeclStmt::getSolitaryDecl() instead of DeclStmt::getDecl() when processin...Ted Kremenek2008-10-061-1/+1
* When processing Objective-C foreach statements, first check to see if the sta...Ted Kremenek2008-10-061-4/+6
* Use DeclStmt::decl_iterator to walk a group of Decl*'s instead of using the S...Ted Kremenek2008-10-061-8/+12
* Don't use DeclStmt::getDecl() to serialize out DeclStmt; use TheDecl directly.Ted Kremenek2008-10-061-1/+1
* Add DeclStmt::hasSolitaryDecl() and DeclStmt::getSolitaryDecl()Ted Kremenek2008-10-062-1/+22
* Temporarily revert functionality change from my previous patch;Dale Johannesen2008-10-061-2/+1
* Remove interfaces implemented by dead pass from the list of available passes.Devang Patel2008-10-062-7/+28
* Use "unsigned" instead of "int" for i to remove a "comparison between unsigne...Ted Kremenek2008-10-061-1/+1
* Cosmetic.Evan Cheng2008-10-061-1/+1
* Add 'x' constraint character.Anders Carlsson2008-10-061-0/+1
* Update function attributes docs.Devang Patel2008-10-061-9/+37
* Use the DeclStmt::decl_iterator to get the first decl in a DeclStmt instead o...Ted Kremenek2008-10-061-1/+1
* In RewriteFunctionBody, using DeclStmt::decl_iterator to rewrite the Decls in...Ted Kremenek2008-10-061-8/+12
* Don't use DeclStmt::getDecl(); this will eventually disappear. Just fetch th...Ted Kremenek2008-10-061-4/+2
* This is an objective-c test, not an objective-c++ one.Evan Cheng2008-10-061-1/+1
* In EmitDeclStmt: use DeclStmt::const_decl_iterator instead of walking the sco...Ted Kremenek2008-10-061-3/+3
* Added PrintRawDeclStmt; use this method to print out DeclStmt instead of usin...Ted Kremenek2008-10-061-5/+19
* Use Decl::decl_iterator instead of walking the ScopedDecl chain (which will s...Ted Kremenek2008-10-061-1/+3
* Use DeclStmt::decl_iterator instead of using Decl::getDecl(). Soon DeclStmts...Ted Kremenek2008-10-061-2/+6
* The current semantic process for direct initializers won't work properly for ...Argyrios Kyrtzidis2008-10-061-21/+13
* Use DeclStmt::decl_iterator instead of walking the ScopedDecl chain (which wi...Ted Kremenek2008-10-061-1/+3
* Add const_decl_iterator to DecStmt.Ted Kremenek2008-10-061-0/+23
* Mark shortening NaN conversions as Inexact. PR 2856.Dale Johannesen2008-10-061-6/+9
* It is possible that all functions in one module are not being Devang Patel2008-10-061-5/+2
* Don't dereference the end() iterator. Thanks toDan Gohman2008-10-061-1/+1
* Update Xcode project.Ted Kremenek2008-10-061-0/+18
* Remove unncessary isDeclaration() checks.Devang Patel2008-10-063-3/+3
* Implement support for C++ direct initializers in declarations, e.g. "int x(1);".Argyrios Kyrtzidis2008-10-068-5/+184
* Allow scalarrepl to treat an all-zero GEP just as bitcast.Matthijs Kooijman2008-10-062-14/+52
* Updated checker build.Ted Kremenek2008-10-061-1/+1
* Actually run Obj-C++ tests if llvm-gcc supports.Duncan Sands2008-10-063-3/+3
* Clarify the relationship between byval and readonly/Duncan Sands2008-10-061-15/+20
* fix incorrect rdar number.Chris Lattner2008-10-061-1/+1
* __CONSTANT_CFSTRINGS__ should be defined even in C mode, otherwise the CFSTRChris Lattner2008-10-062-4/+17
* Make sema and codegen allow __builtin___CFStringMakeConstantString as a validChris Lattner2008-10-064-21/+37
* ExprConstant should not abort when it sees a pointer constant that isn't.Chris Lattner2008-10-061-3/+0
* always try to fold a builtin before emitting it. In the futureChris Lattner2008-10-061-18/+5
* Remove the 'C' / isConstantExpr flag on builtins. Code should neverChris Lattner2008-10-062-16/+9
* Add a Expr::isEvaluatable method, eliminate isBuiltinConstantExprChris Lattner2008-10-064-21/+20
* Move folding of __builtin_classify_type out of the CallExprChris Lattner2008-10-063-65/+70
* Move handling of __builtin_nan("") out of CGBuiltin.cpp into ExprConstant.cppChris Lattner2008-10-062-18/+19
* remove some code where CGBuiltin folds constants, and use tryEvaluate toChris Lattner2008-10-061-22/+19
* instead of making codegen try to know about all of the builtins to generateChris Lattner2008-10-061-23/+8
* Teach FloatExprEvaluator to evaluate __builtin_huge_val and inf.Chris Lattner2008-10-061-3/+5
* "Enhance" CheckArithmeticConstantExpression to accept ?: with a constant Chris Lattner2008-10-063-20/+50
* Add a comment that describes tryEvaluate. Make tryEvaluate foldChris Lattner2008-10-063-6/+42
* add a new CallExpr::isBuiltinCall() method, and use it to simplify some existingChris Lattner2008-10-062-63/+61