blob: 2837de4b8b44e2b19f921fe0b59b4f18b266fc8e [file] [log] [blame]
Bill Wendling7b7c9732012-06-29 08:32:29 +00001// RUN: %clang_cc1 %s -emit-llvm -g -o - | grep DW_TAG_pointer_type | grep -v {"char"}
Eric Christopher3883e662011-07-26 22:17:02 +00002
3char i = 1;
4void foo() {
5 char *cp = &i;
6}
7