1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

test case for r95842.

llvm-svn: 95844
This commit is contained in:
Devang Patel 2010-02-11 01:31:01 +00:00
parent 2aa666c419
commit f4f1901ec8

View File

@ -0,0 +1,7 @@
// RUN: %llvmgcc %s -S -g -o - | grep DW_TAG_pointer_type | grep -v char
char i = 1;
void foo() {
char *cp = &i;
}