mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
8 lines
119 B
C
8 lines
119 B
C
|
// RUN: %llvmgcc %s -S -g -o - | grep DW_TAG_pointer_type | grep -v char
|
||
|
|
||
|
char i = 1;
|
||
|
void foo() {
|
||
|
char *cp = &i;
|
||
|
}
|
||
|
|