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