1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-02 07:30:52 +00:00
llvm-6502/test/FrontendC/2007-10-30-Volatile.c

7 lines
117 B
C
Raw Normal View History

// RUN: %llvmgcc -S %s -o /dev/null -Wall -Werror
void bork() {
char * volatile p;
volatile int cc;
p += cc;
}