New test.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43527 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Devang Patel 2007-10-30 23:07:47 +00:00
parent 8392772727
commit e45bb9ad5e

View File

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