diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2012-06-26 16:06:38 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2012-06-26 16:06:38 +0000 |
commit | 6362803cfed99bc008b12b488d2c2a682df0cc2d (patch) | |
tree | f476f5ae436635f48d58742bdf2d66f0311b3488 /clang/test/CodeGen/capture-complex-expr-in-block.c | |
parent | 41960467142142e8b2eef91436b1345a372e5d14 (diff) | |
download | llvm-6362803cfed99bc008b12b488d2c2a682df0cc2d.zip llvm-6362803cfed99bc008b12b488d2c2a682df0cc2d.tar.gz llvm-6362803cfed99bc008b12b488d2c2a682df0cc2d.tar.bz2 |
block literal irgen: several improvements on naming block
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
Diffstat (limited to 'clang/test/CodeGen/capture-complex-expr-in-block.c')
-rw-r--r-- | clang/test/CodeGen/capture-complex-expr-in-block.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/capture-complex-expr-in-block.c b/clang/test/CodeGen/capture-complex-expr-in-block.c index 9ce7570..86c93d0 100644 --- a/clang/test/CodeGen/capture-complex-expr-in-block.c +++ b/clang/test/CodeGen/capture-complex-expr-in-block.c @@ -12,7 +12,7 @@ int main () b(); } -// CHECK: define internal void @__main_block_invoke_0 +// CHECK: define internal void @__main_block_invoke // CHECK: [[C1:%.*]] = alloca { double, double }, align 8 // CHECK: [[RP:%.*]] = getelementptr inbounds { double, double }* [[C1]], i32 0, i32 0 // CHECK-NEXT: [[R:%.*]] = load double* [[RP]] |