mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-09 17:16:07 +00:00
9 lines
122 B
C
9 lines
122 B
C
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
|
|
|
|
void bar () {
|
|
static char x[10];
|
|
static char *xend = x + 10;
|
|
}
|
|
|
|
|