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