aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaExpr.cpp
AgeCommit message (Expand)Author
2011-02-19Warn about code that uses variables and functions with internal linkageJohn McCall
2011-02-18Initial steps to improve diagnostics when there is a NULL andChandler Carruth
2011-02-18Selector::getIdentifierInfoForSlot() can return NULL values, a factDouglas Gregor
2011-02-18Introduce ASTContext::getLogicalOperationType() to return bool or int, depend...Argyrios Kyrtzidis
2011-02-18When building a qualified reference to a member of an anonymous structDouglas Gregor
2011-02-18Switch labels over to using normal name lookup, instead of their Chris Lattner
2011-02-17make block bodies handle undefined labels just like functions.Chris Lattner
2011-02-17Step #2/N of __label__ support: keep pushing LabelDecl forward,Chris Lattner
2011-02-17Change the representation of GNU ?: expressions to use a different expressionJohn McCall
2011-02-17Implement -Wenum-compare, which warns when comparing two enums ofChandler Carruth
2011-02-17Step #1/N of implementing support for __label__: split labels intoChris Lattner
2011-02-17Fix PR9025 and add a diagnostic (and sometimes a fixit) for an overloadedMatt Beaumont-Gay
2011-02-16Add trivial buffer overflow checking in Sema.Ted Kremenek
2011-02-10Fix think-o I committed without testing, shameful.Daniel Dunbar
2011-02-10Fix a gcc Wuninitialized false positive.Daniel Dunbar
2011-02-09AST, Sema, Serialization: add CUDAKernelCallExpr and related semantic actionsPeter Collingbourne
2011-02-09NonTypeTemplateParmDecl is just a DeclaratorDecl, not a VarDecl.John McCall
2011-02-07A few more tweaks to the blocks AST representation: John McCall
2011-02-07pre/post ++/-- for AltiVec vectors. (with builtins-ppc-altivec.c failure fixed)Anton Yartsev
2011-02-04Improve our handling of the current instantiation for qualifiedDouglas Gregor
2011-02-04When calling a bound pointer to member function, check theDouglas Gregor
2011-02-03More capturing of 'this': implicit member expressions. Getting thatJohn McCall
2011-02-02An insomniac stab at making block declarations list the variables they closeJohn McCall
2011-02-02Remove redundant check to not warn for warn_equality_with_extra_parens if we ...Ted Kremenek
2011-02-01When diagnosing address-space changes, apply array-to-pointer decay first.John McCall
2011-02-01Don't warn about extraneous '()' around a comparison if it occurs within a ma...Ted Kremenek
2011-02-01Don't warn for "if ((a == b))" if the parens came from a macro. Thanks to Far...Argyrios Kyrtzidis
2011-02-01For "if ((a == b))" only warn if 'a' is a modifiable l-value. Caught by John!Argyrios Kyrtzidis
2011-02-01Warn for "if ((a == b))" where the equality expression is needlessly wrapped ...Argyrios Kyrtzidis
2011-02-01Perform the bad-address-space conversions check as part of John McCall
2011-01-31Make Check*PointerTypesForAssignment private and tell them that they'reJohn McCall
2011-01-31Slightly reorganize CheckAssignmentConstraints and remove some redundantJohn McCall
2011-01-31Error for use of field from anonymous struct or union should say "invalid use...Argyrios Kyrtzidis
2011-01-31Amazing that there are still issues with the fields of anonymous struct/unions..Argyrios Kyrtzidis
2011-01-28Give OpaqueValueExpr a source location, because its source locationDouglas Gregor
2011-01-26Tweak the rule for deciding if a provisional ivar is neededFariborz Jahanian
2011-01-25Fix infinite loop during error diagnostics. Fixes rdar://8875304.Argyrios Kyrtzidis
2011-01-24Revert r124146 for now. It appears to be failing on a few platforms.Eric Christopher
2011-01-24pre/post increase/decrease for AltiVec vectorsAnton Yartsev
2011-01-19Warn about the use of unparenthesized |= in conditionals (which may beDouglas Gregor
2011-01-19Change QualType::getTypePtr() to return a const pointer, then change aJohn McCall
2011-01-19lib/Sema/SemaExpr.cpp: __null should be LongLongTy on LLP64 Win64.NAKAMURA Takumi
2011-01-18Properly do a float -> _Complex double conversion, fixes rdar://8875946.Argyrios Kyrtzidis
2011-01-18Add support for explicit constructor calls in Microsoft mode.Francois Pichet
2011-01-18Fix warnings found by gcc-4.6, from -Wunused-but-set-variable andJeffrey Yasskin
2011-01-11Add a comment for r123231.Francois Pichet
2011-01-11In Microsoft mode, force 64 bit hex integer constants to signed type if the L...Francois Pichet
2011-01-05Use the proper enum as parameter, instead of unsigned. No functionality change.Argyrios Kyrtzidis
2011-01-05Refactor the application of type attributes so that attributes fromJohn McCall
2011-01-04Prefer getAs<ComplexType> rather than cast<ComplexType> on canonical type. Su...Abramo Bagnara