mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
7 lines
117 B
C
7 lines
117 B
C
|
// RUN: %llvmgcc -S %s -o /dev/null -Wall -Werror
|
||
|
void bork() {
|
||
|
char * volatile p;
|
||
|
volatile int cc;
|
||
|
p += cc;
|
||
|
}
|