Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -fblocks -g -emit-llvm -o - %s | FileCheck %s
      2 // APPLE LOCAL file 5939894 */
      3 // Verify that the desired debugging type is generated for a structure
      4 //  member that is a pointer to a block.
      5 
      6 // CHECK: __block_literal_generic{{.*}}DW_TAG_structure_type
      7 // CHECK: __block_descriptor{{.*}}DW_TAG_structure_type
      8 struct inStruct {
      9   void (^genericBlockPtr)();
     10 } is;
     11 
     12