llvm-6502/test/CFrontend/2007-10-30-Volatile.c
Devang Patel e45bb9ad5e New test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43527 91177308-0d34-0410-b5e6-96231b3b80d8
2007-10-30 23:07:47 +00:00

7 lines
117 B
C

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