Age | Commit message (Expand) | Author |
2011-10-11 | Rename SemaCXXCast.cpp to SemaCast.cpp. | John McCall |
2011-10-06 | Move type-checking for C-style casts in C into the now-misnamed | John McCall |
2011-10-05 | Refactor the analysis of C++ cast expressions so that even | John McCall |
2011-09-25 | Rename Diagnostic to DiagnosticsEngine as per issue 5397 | David Blaikie |
2011-09-17 | Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t... | Francois Pichet |
2011-09-10 | When converting a block pointer to an Objective-C pointer type, extend | John McCall |
2011-09-09 | Give conversions of block pointers to ObjC pointers a different cast kind | John McCall |
2011-09-02 | Make StmtDumper::VisitCXXFunctionalCastExpr dump the attached cast kind. Fix... | Eli Friedman |
2011-07-23 | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner |
2011-07-08 | Remove unused variable. | Benjamin Kramer |
2011-07-08 | objc++-arc: more diagnosis of converting a weak-unavailable | Fariborz Jahanian |
2011-07-07 | objc++-arc: diagnose assignment/cast of a weak-unavailable | Fariborz Jahanian |
2011-07-01 | [ARC] When casting from a pointer to an objective-c object with known ownersh... | Argyrios Kyrtzidis |
2011-06-21 | ^cat^cast^ | Fariborz Jahanian |
2011-06-21 | Add comment before CheckObjCARCConversion is called on | Fariborz Jahanian |
2011-06-21 | objc-arc: CodeGen part of unbridged cast of CF types. | Fariborz Jahanian |
2011-06-15 | Automatic Reference Counting. | John McCall |
2011-06-05 | Remove all references to InitializationSequence::FailedSequence from outside ... | Sebastian Redl |
2011-05-24 | Fix a bug in -Wundefined-reinterpret-cast where we failed to look | Chandler Carruth |
2011-05-20 | Introduce Type::isSignedIntegerOrEnumerationType() and | Douglas Gregor |
2011-05-11 | In Microsoft mode, allow conversion from pointer to integral type no matter w... | Francois Pichet |
2011-05-02 | Add a warning for when reinterpret_cast leads to undefined behavior, patch by... | Argyrios Kyrtzidis |
2011-04-26 | Make yet another placeholder type, this one marking that an expression is a b... | John McCall |
2011-04-23 | Exhaust the cases. | Argyrios Kyrtzidis |
2011-04-22 | Don't allow reinterpret_cast to reference of vector element and property expr... | Argyrios Kyrtzidis |
2011-04-22 | reinterpret_cast to reference of a bit-field is not allowed. | Argyrios Kyrtzidis |
2011-04-16 | Testing my commit access. A few whitespace changes to Sema/SemaCXXCast.cpp. | Richard Trieu |
2011-04-15 | Implement appropriate semantics for C++ casting and conversion when | Douglas Gregor |
2011-04-11 | Remove CK_DynamicToNull. | Anders Carlsson |
2011-04-10 | As a first step towards fixing PR9641, add a CK_DynamicToNull cast kind which | Anders Carlsson |
2011-04-10 | Simplify calling CheckPlaceholderExpr, converge on it in a few places, | John McCall |
2011-04-08 | Use ExprResult& instead of Expr *& in Sema | John Wiegley |
2011-04-07 | Basic, untested implementation for an "unknown any" type requested by LLDB. | John McCall |
2011-03-27 | supported: AltiVec vector initialization with a single literal according to P... | Anton Yartsev |
2011-03-12 | Fixes for some more expressions containing function templateids that | Douglas Gregor |
2011-02-28 | Push nested-name-specifier source location information into | Douglas Gregor |
2011-02-20 | Remove a dead variable. | Daniel Dunbar |
2011-02-19 | Handle the resolution of a reference to a function template (which | Douglas Gregor |
2011-02-18 | Implement C++0x [expr.static.cast]p9, which permits explicitly casting | Douglas Gregor |
2011-02-14 | Don't crash on hierarchy static_casts which appear in variable initializers. | John McCall |
2011-02-14 | Provide overload diagnostics when explicit casts involving class types fail. | John McCall |
2011-01-27 | Fix a horrible bug in our handling of C-style casting, where a C-style | Douglas Gregor |
2011-01-26 | Handle C-style casts to rvalue reference types that cast away constness. | Douglas Gregor |
2011-01-25 | When performing a glvalue-to-xvalue static_cast that involves a | Douglas Gregor |
2011-01-22 | Update const_cast semantics for rvalue references. Add tests for | Douglas Gregor |
2011-01-22 | Teach static_cast and dynamic_cast about rvalue references. | Douglas Gregor |
2011-01-18 | Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and | Jeffrey Yasskin |
2011-01-12 | Add the location of the right parenthesis of a C++ named cast | Douglas Gregor |
2010-12-23 | Change all self assignments X=X to (void)X, so that we can turn on a | Jeffrey Yasskin |
2010-12-04 | Although we currently have explicit lvalue-to-rvalue conversions, they're | John McCall |