teak-llvm/clang/test/CodeGen/2010-02-10-PointerName.c
Reid Kleckner e494399203 FileCheck-ify some clang grep tests that use double quotes
The escaping interaction between Python and grep doesn't work on my
system.  This change fixes the tests for me.

llvm-svn: 179214
2013-04-10 21:10:39 +00:00

10 lines
155 B
C

// RUN: %clang_cc1 %s -emit-llvm -g -o - | FileCheck %s
// CHECK: DW_TAG_pointer_type
// CHECK-NOT: {"char"}
char i = 1;
void foo() {
char *cp = &i;
}