summaryrefslogtreecommitdiff
path: root/clang/test/CodeGenCXX/lambda-expressions.cpp
AgeCommit message (Expand)Author
2024-01-11[Clang] Set writable and dead_on_unwind attributes on sret arguments (#77116)Nikita Popov
2023-08-28[clang] Remove rdar links; NFCAaron Ballman
2023-07-17Revert "Remove rdar links; NFC"Mehdi Amini
2023-07-07Remove rdar links; NFCAaron Ballman
2022-10-23[Clang] Change AnonStructIds in MangleContext to per-function basedRong Xu
2022-10-06[CodeGenCXX] 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-10-16Reapply "OpaquePtr: Add type to sret attribute"Matt Arsenault
2020-09-29Revert "OpaquePtr: Add type to sret attribute"Tres Popp
2020-09-25OpaquePtr: Add type to sret attributeMatt Arsenault
2020-03-24[CodeGen] Add an alignment attribute to all sret parametersErik Pilkington
2019-06-20Store a pointer to the return value in a static alloca and let the debugger u...Amy Huang
2016-12-14When emitting a multidimensional array copy, only emit a single flattenedRichard Smith
2016-12-14Remove custom handling of array copies in lambda by-value array capture andRichard Smith
2016-07-20When copying an array into a lambda, destroy temporaries fromJohn McCall
2016-01-25Allow capture typedefs/type aliases for VLAs in lambdas/captured statements c...Alexey Bataev
2016-01-21Fix crash for typedefs for arrays of runtime bounds in Lambdas/Captured State...Alexey Bataev
2015-09-08Compute and preserve alignment more faithfully in IR-generation.John McCall
2015-04-28Fix assertion failure if a lambda array-capture is followed by a this capture.Richard Smith
2015-03-13Test case updates for explicit type parameter to the gep operatorDavid Blaikie
2015-02-27Update Clang tests to handle explicitly typed load changes in LLVM.David Blaikie
2015-01-22Emit DeferredDeclsToEmit in a DFS order.Rafael Espindola
2015-01-21Use a CHECK-LABEL. NFCRafael Espindola
2015-01-01CodeGen: Don't crash when a lambda uses a local constexpr variableDavid Majnemer
2014-12-14CodeGen: Compound literals with funny types shouldn't crashDavid Majnemer
2013-08-15CHECK-LABEL-ify some code gen tests to improve diagnostic experience when tes...Stephen Lin
2013-02-15Add the 'target-cpu' and 'target-features' attributes to functions.Bill Wendling
2013-01-31Update the tests.Bill Wendling
2013-01-29Modify the tests for the (sorted) order that the attributes come out as now.Bill Wendling
2013-01-03Don't assert/crash on reference variables in lambdas bound to aEli Friedman
2012-12-14clang/test/CodeGenCXX/lambda-expressions.cpp: Relax expression for -Asserts.NAKAMURA Takumi
2012-12-13Make sure the __invoke function for lambdas returns properly. Per bug report...Eli Friedman
2012-12-01Fix the determination of whether a capture refers to an enclosingDouglas Gregor
2012-10-20DR1472: A reference isn't odr-used if it has preceding initialization,Richard Smith
2012-08-07Teach Expr::HasSideEffects about all the Expr types, and fix a bug where itRichard Smith
2012-02-21Implement non-internal linkage for lambda closure types that need aDouglas Gregor
2012-02-20Make sure that we set up the right declaration contexts when creatingDouglas Gregor
2012-02-20When we resolve the type of an 'auto' variable, clear out the linkageDouglas Gregor
2012-02-20Basic support for name mangling of C++11 lambda expressions. BecauseDouglas Gregor
2012-02-17Rework the Sema/AST/IRgen dance for the lambda closure type'sDouglas Gregor
2012-02-14Add a coverage test for lambda expression IRGen.Eli Friedman