mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-28 07:49:01 -04:00

The escaping interaction between Python and grep doesn't work on my system. This change fixes the tests for me. llvm-svn: 179214
10 lines
155 B
C
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;
|
|
}
|
|
|