summaryrefslogtreecommitdiff
path: root/test/SemaCXX/vararg-non-pod.cpp
AgeCommit message (Expand)Author
2016-04-13Lit C++11 Compatibility Patch #7Charles Li
2014-12-17Adding a -Wunused-value warning for expressions with side effects used in an ...Aaron Ballman
2014-09-29Don't trap when passing non-POD arguments to variadic functions in MS-compati...Hans Wennborg
2013-06-22Extend -Wnon-pod-varargs to check calls made from member pointers.Richard Trieu
2013-06-22Extend -Wnon-pod-varargs to more cases, such as function pointers as returnRichard Trieu
2013-06-20Extend -Wnon-pod-varargs to check calls made from function pointers.Richard Trieu
2012-10-11Make sure we perform the variadic method check correctly for calls to a membe...Eli Friedman
2012-02-03[frontend] Don't allow a mapping to a warning override an error/fatal mapping.Chad Rosier
2012-01-21Make clang's AST model sizeof and typeof with potentially-evaluated operands ...Eli Friedman
2012-01-17Revert r148271; this requires more thought.Eli Friedman
2012-01-17Change the behavior of the lvalue-to-rvalue conversion for varargs in Potenti...Eli Friedman
2011-10-14Don't try to diagnose anything when we're passing incomplete typesDouglas Gregor
2011-06-14Properly diagnose using abstract and incomplete types in va_argDavid Majnemer
2011-05-21Fix our handling of the warning when one tries to pass aDouglas Gregor
2010-05-16really use valist.Chris Lattner
2010-05-16fix rdar://7985267 - Don't emit an error about a non-pod argumentChris Lattner
2010-03-10When pretty-printing tag types, only print the tag if we're in C (andJohn McCall
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar
2009-12-12When certain diagnostics involving run-time behavior would be emittedDouglas Gregor
2009-12-12Suppress warnings and errors about certain uses of non-POD types (inDouglas Gregor
2009-12-11Give the "cannot pass object of non-POD type 'class C' through variadic const...Chris Lattner
2009-11-08Eliminate &&s in tests.Daniel Dunbar
2009-09-08Handle variadic constructors better. Share code between BuildCXXConstructExpr...Anders Carlsson
2009-03-24Rename clang to clang-cc.Daniel Dunbar
2009-01-16Use a single function for doing vararg argument promotion. Also, make sure to...Anders Carlsson
2009-01-13Warn when someone tries to pass a variable with a non-POD type to a varargs f...Anders Carlsson