1 // RUN: %clang_cc1 %s -emit-llvm -g -o - | grep DW_TAG_pointer_type | grep -v {"char"} 2 3 char i = 1; 4 void foo() { 5 char *cp = &i; 6 } 7 8