1 // RUN: %clang_cc1 -fblocks -g -emit-llvm -o - %s | FileCheck %s 2 // Verify that the desired debugging type is generated for a structure 3 // member that is a pointer to a block. 4 5 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "__block_literal_generic" 6 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "__block_descriptor" 7 struct inStruct { 8 void (^genericBlockPtr)(); 9 } is; 10 11