diff options
Diffstat (limited to 'clang/test/CodeGen/2007-10-30-Volatile.c')
-rw-r--r-- | clang/test/CodeGen/2007-10-30-Volatile.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/test/CodeGen/2007-10-30-Volatile.c b/clang/test/CodeGen/2007-10-30-Volatile.c new file mode 100644 index 0000000..17aac1a --- /dev/null +++ b/clang/test/CodeGen/2007-10-30-Volatile.c @@ -0,0 +1,6 @@ +// RUN: %clang_cc1 -emit-llvm %s -o /dev/null -Wall -Werror +void bork() { + char * volatile p = 0; + volatile int cc = 0; + p += cc; +} |