diff options
Diffstat (limited to 'clang/test/CodeGen/blocks-1.c')
-rw-r--r-- | clang/test/CodeGen/blocks-1.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/clang/test/CodeGen/blocks-1.c b/clang/test/CodeGen/blocks-1.c index 804b688afb3..fbc45236aa4 100644 --- a/clang/test/CodeGen/blocks-1.c +++ b/clang/test/CodeGen/blocks-1.c @@ -1,9 +1,10 @@ // RUN: clang %s -emit-llvm -o %t -fblocks -f__block && -// RUN: grep "_Block_object_dispose" %t | count 5 -// RUN: grep "__copy_helper_block_" %t | count 6 -// RUN: grep "__destroy_helper_block_" %t | count 6 -// RUN: grep "__Block_byref_id_object_copy_" %t | count 2 -// RUN: grep "__Block_byref_id_object_dispose_" %t | count 2 +// RUN: grep "_Block_object_dispose" %t | count 5 && +// RUN: grep "__copy_helper_block_" %t | count 6 && +// RUN: grep "__destroy_helper_block_" %t | count 6 && +// RUN: grep "__Block_byref_id_object_copy_" %t | count 2 && +// RUN: grep "__Block_byref_id_object_dispose_" %t | count 2 && +// RUN: grep "i32 135)" %t | count 1 #include <stdio.h> void test1() { |