index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Sema
/
SemaCast.cpp
Age
Commit message (
Expand
)
Author
2012-12-04
Sort all of Clang's files under 'lib', and fix up the broken headers
Chandler Carruth
2012-10-16
Implement GCC's -Wint-to-pointer-cast.
David Blaikie
2012-08-23
Now that ASTMultiPtr is nothing more than a array reference, make it a Mutabl...
Benjamin Kramer
2012-08-23
Rip out remnants of move semantic emulation and smart pointers in Sema.
Benjamin Kramer
2012-08-17
c: implement gcc's -Wbad-function-cast which warns
Fariborz Jahanian
2012-08-16
objective-C: deprecate casts of ObjC's SEL
Fariborz Jahanian
2012-07-16
Add correct parenthesis range to CXXConstructExprs inside
Daniel Jasper
2012-06-16
Fix Sema and IRGen for atomic compound assignment so it has the right semanti...
Eli Friedman
2012-05-07
Detecting illegal instantiations of abstract types when using a function-styl...
Aaron Ballman
2012-05-04
Move Sema::RequireCompleteType() and Sema::RequireCompleteExprType()
Douglas Gregor
2012-04-29
PR9546, DR1268: A prvalue cannot be reinterpret_cast to an rvalue reference
Richard Smith
2012-03-11
Unify naming of LangOptions variable/get function across the Clang stack (Lex...
David Blaikie
2012-03-06
Add clang support for new Objective-C literal syntax for NSDictionary, NSArray,
Ted Kremenek
2012-02-25
ArrayRef'ize various functions in the AST/Parser/Sema.
Ahmed Charles
2012-02-15
Split reinterpret_casts of member pointers out from CK_BitCast; this
John McCall
2012-02-13
Don't route explicit construction via list-initialization through the functio...
Sebastian Redl
2012-02-12
Proper initializer list support for new expressions and type construct expres...
Sebastian Redl
2012-02-12
Change the way we store initialization kinds so that all direct inits can dis...
Sebastian Redl
2012-02-03
C++ 5.2.10p2 has a note that mentions that, subject to all other restrictions,
Chad Rosier
2012-01-17
Remove unreachable code in Clang. (replace with llvm_unreachable where approp...
David Blaikie
2012-01-16
Some improvements to the handling of C11 atomic types:
David Chisnall
2012-01-12
Fix some edge cases with C++ casts and placeholder expressions.
Eli Friedman
2011-11-29
Revert r145244. It causes us to create broken ASTs with missing type information
Richard Smith
2011-11-28
Removed useless ImplicitCast nodes in explicit cstyle and static casts
Nicola Gigante
2011-11-15
Fixed a cut&paste error introduced in r141336.
Abramo Bagnara
2011-10-31
Add missing lvalue-to-rvalue conversion.
Eli Friedman
2011-10-18
-Wc++98-compat and -Wc++98-compat-pedantic warnings for Sema, part 1.
Richard Smith
2011-10-17
Teach the ARC compiler to not require __bridge casts when
John McCall
2011-10-17
Add a helper function for determining whether an expression
John McCall
2011-10-11
Catch placeholder types in DefaultLvalueConversion
John McCall
2011-10-11
Rename SemaCXXCast.cpp to SemaCast.cpp.
John McCall