aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/capture-complex-expr-in-block.c
AgeCommit message (Collapse)AuthorFilesLines
2015-02-27Update Clang tests to handle explicitly typed load changes in LLVM.David Blaikie1-2/+2
llvm-svn: 230795
2015-02-27Update Clang tests to handle explicitly typed gep changes in LLVM.David Blaikie1-2/+2
llvm-svn: 230783
2013-08-15CHECK-LABEL-ify some code gen tests to improve diagnostic experience when ↵Stephen Lin1-1/+1
tests fail. llvm-svn: 188447
2012-06-26block literal irgen: several improvements on naming blockFariborz Jahanian1-1/+1
literal helper functions. All helper functions (global and locals) use block_invoke as their prefix. Local literal helper names are prefixed by their enclosing mangled function names. Blocks in non-local initializers (e.g. a global variable or a C++11 field) are prefixed by their mangled variable name. The descriminator number added to end of the name starts off with blank (for first block) and _<N> (for the N+2-th block). llvm-svn: 159206
2011-09-02Revise test and see if it passes with a release-built clang.Fariborz Jahanian1-4/+4
llvm-svn: 139043
2011-09-02blocks: Support capturing complex variable in block.Fariborz Jahanian1-0/+20
// rdar://10033896 llvm-svn: 139041