Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 %s -emit-llvm -debug-info-kind=limited -o - | FileCheck %s
      2 // CHECK: DW_TAG_pointer_type
      3 // CHECK-NOT: {"char"}
      4 
      5 char i = 1;
      6 void foo() {
      7   char *cp = &i;
      8 }
      9 
     10