summaryrefslogtreecommitdiff
path: root/clang/test/CodeGenCXX/delete.cpp
AgeCommit message (Expand)Author
2025-07-24clang: Handle deleting pointers to incomplete array types (#150359)Harald van Dijk
2024-05-22Reland "[clang] Enable sized deallocation by default in C++14 onwards" (#90373)Pengcheng Wang
2024-04-26Revert "[clang] Enable sized deallocation by default in C++14 onwards (#83774...Vitaly Buka
2024-04-26[clang] Enable sized deallocation by default in C++14 onwards (#83774)Pengcheng Wang
2023-08-29Revert "[clang] Enable sized deallocation by default in C++14 onwards"Aaron Ballman
2023-08-29[clang] Enable sized deallocation by default in C++14 onwardswangpc
2023-06-08[Clang] Convert some tests to opaque pointers (NFC)Nikita Popov
2022-04-07[OpaquePtrs][Clang] Add -no-opaque-pointers to tests (NFC)Nikita Popov
2022-01-16[Clang/Test]: Rename enable_noundef_analysis to disable-noundef-analysis and ...hyeongyu kim
2021-11-09Revert "[Clang/Test]: Rename enable_noundef_analysis to disable-noundef-analy...hyeongyu kim
2021-11-06[Clang/Test]: Rename enable_noundef_analysis to disable-noundef-analysis and ...hyeongyukim
2021-11-06Revert "[Clang/Test]: Rename enable_noundef_analysis to disable-noundef-analy...Juneyoung Lee
2021-11-06[Clang/Test]: Rename enable_noundef_analysis to disable-noundef-analysis and ...Juneyoung Lee
2021-10-18Revert D105169 due to the two-stage failure in ASANJuneyoung Lee
2021-10-16[Clang/Test]: Rename enable_noundef_analysis to disable-noundef-analysis and ...Juneyoung Lee
2020-12-30[test] Add {{.*}} to make tests immune to dso_local/dso_preemptable/(none) di...Fangrui Song
2020-11-16[CodeGen] Apply 'nonnull' and 'dereferenceable(N)' to 'this' pointerCJ Johnson
2020-06-05PR34581: Don't remove an 'if (p)' guarding a call to 'operator delete(p)' und...Richard Smith
2015-02-27Update Clang tests to handle explicitly typed load changes in LLVM.David Blaikie
2015-02-27Update Clang tests to handle explicitly typed gep changes in LLVM.David Blaikie
2013-08-15CHECK-LABEL-ify some code gen tests to improve diagnostic experience when tes...Stephen Lin
2013-07-21Test updates missed from r186799.Richard Smith
2013-02-22Update to use references to attribute groups instead of listing the attribute...Bill Wendling
2012-09-25When performing a ::delete of an object with a virtual destructor,John McCall
2011-09-21Enforce access control for conversion operators used in contextualJohn McCall
2011-08-02PR10566: Make sure codegen for deleting an pointer to an incomplete type actu...Eli Friedman
2011-07-27Fix typo in test.Eli Friedman
2011-07-27Make CodeGen for array delete involving incomplete class work without crashin...Eli Friedman
2011-07-13Okay, that rule about zero-length arrays applies to destroyingJohn McCall
2011-07-13Switch delete[] IR-generation over to the destroy framework,John McCall
2011-07-13When compiling ::delete for a class with a virtual destructor, callDouglas Gregor
2011-07-09clang side to match the LLVM IR type system rewrite patch.Chris Lattner
2011-01-25Move unnamed_addr after the function arguments on Sabre's request.Rafael Espindola
2011-01-11Add unnamed_addr to constructors and destructors.Rafael Espindola
2010-09-13When applying 'delete' on a pointer-to-array type match GCC and EDG behavior ...Argyrios Kyrtzidis
2010-09-02Fix more i1/i8 pointer madness. Here, an overactive assertionDouglas Gregor
2010-09-02Abstract IR generation of array cookies into the C++ ABI class andJohn McCall
2010-04-20Restore r101841 without modification. Also mark 'operator delete' as used forJohn McCall
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar
2009-11-08Eliminate &&s in tests.Daniel Dunbar
2009-10-01Fix a lame regression in IR gen for C++ delete expressions. PR5102Douglas Gregor
2009-08-16Improve handling of delete expressions.Anders Carlsson