summaryrefslogtreecommitdiff
path: root/test/SemaCXX/reinterpret-cast.cpp
Commit message (Expand)AuthorAge
* Add a warning to diagnose statements in C++ like "*(volatile int*)x;". Conce...Eli Friedman2012-05-24
* C++ 5.2.10p2 has a note that mentions that, subject to all other restrictions,Chad Rosier2012-02-03
* Fix a bug in -Wundefined-reinterpret-cast where we failed to lookChandler Carruth2011-05-24
* Add a warning for when reinterpret_cast leads to undefined behavior, patch by...Argyrios Kyrtzidis2011-05-02
* Don't allow reinterpret_cast to reference of vector element and property expr...Argyrios Kyrtzidis2011-04-22
* reinterpret_cast to reference of a bit-field is not allowed.Argyrios Kyrtzidis2011-04-22
* Implement appropriate semantics for C++ casting and conversion whenDouglas Gregor2011-04-15
* tests: Use -ffreestanding when including stdint.h, to avoid platform dependen...Daniel Dunbar2010-09-07
* print "const intptr_t" instead of "intptr_t const"Chris Lattner2010-09-05
* make clang print types as "const int *" instead of "int const*",Chris Lattner2010-09-05
* When deciding whether reinterpret_cast casts away constness we need to look a...Anders Carlsson2010-06-04
* When pretty-printing tag types, only print the tag if we're in C (andJohn McCall2010-03-10
* Implement the lvalue-to-rvalue conversion where needed. TheDouglas Gregor2010-02-03
* Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar2009-12-15
* Use intptr_t rather than long so that this test will not fail on LLP64 systems,Sean Hunt2009-11-22
* CastsAwayConstness shouldn't care if member pointers point into different cla...Sebastian Redl2009-11-18
* Use "()" instead of "(void)" when pretty-printing a parameter-less function t...Argyrios Kyrtzidis2009-06-03
* Rename clang to clang-cc.Daniel Dunbar2009-03-24
* Add handling of member pointers to reinterpret_cast.Sebastian Redl2009-01-27
* Semantic analysis for C++ reinterpret_cast and const_cast. Patch by Sebastian...Douglas Gregor2008-10-24