summaryrefslogtreecommitdiff
path: root/test/SemaCXX/reinterpret-cast.cpp
AgeCommit message (Expand)Author
2016-12-09DR1295 and cleanup for P0135R1: Make our initialization code more directlyRichard Smith
2015-05-19PR20073: promote "dereference of 'void*'" from Extension to ExtWarn.Richard Smith
2013-12-14Revert "Don't require -re suffix on -verify directives with regexes."Alp Toker
2013-12-14Don't require -re suffix on -verify directives with regexes.Hans Wennborg
2013-12-13Tighten test regexes checking for __attribute__((thiscall)) on function types.Hans Wennborg
2013-12-12Switch to the new MingW ABI.Rafael Espindola
2012-05-24Add a warning to diagnose statements in C++ like "*(volatile int*)x;". Conce...Eli Friedman
2012-02-03C++ 5.2.10p2 has a note that mentions that, subject to all other restrictions,Chad Rosier
2011-05-24Fix a bug in -Wundefined-reinterpret-cast where we failed to lookChandler Carruth
2011-05-02Add a warning for when reinterpret_cast leads to undefined behavior, patch by...Argyrios Kyrtzidis
2011-04-22Don't allow reinterpret_cast to reference of vector element and property expr...Argyrios Kyrtzidis
2011-04-22reinterpret_cast to reference of a bit-field is not allowed.Argyrios Kyrtzidis
2011-04-15Implement appropriate semantics for C++ casting and conversion whenDouglas Gregor
2010-09-07tests: Use -ffreestanding when including stdint.h, to avoid platform dependen...Daniel Dunbar
2010-09-05print "const intptr_t" instead of "intptr_t const"Chris Lattner
2010-09-05make clang print types as "const int *" instead of "int const*",Chris Lattner
2010-06-04When deciding whether reinterpret_cast casts away constness we need to look a...Anders Carlsson
2010-03-10When pretty-printing tag types, only print the tag if we're in C (andJohn McCall
2010-02-03Implement the lvalue-to-rvalue conversion where needed. TheDouglas Gregor
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar
2009-11-22Use intptr_t rather than long so that this test will not fail on LLP64 systems,Sean Hunt
2009-11-18CastsAwayConstness shouldn't care if member pointers point into different cla...Sebastian Redl
2009-06-03Use "()" instead of "(void)" when pretty-printing a parameter-less function t...Argyrios Kyrtzidis
2009-03-24Rename clang to clang-cc.Daniel Dunbar
2009-01-27Add handling of member pointers to reinterpret_cast.Sebastian Redl
2008-10-24Semantic analysis for C++ reinterpret_cast and const_cast. Patch by Sebastian...Douglas Gregor