Remove tests migrated to clang or are unnecessary.
[oota-llvm.git] / test / FrontendC++ / 2009-02-07-VolatileArrayRefHack.cpp
diff --git a/test/FrontendC++/2009-02-07-VolatileArrayRefHack.cpp b/test/FrontendC++/2009-02-07-VolatileArrayRefHack.cpp
deleted file mode 100644 (file)
index c5ec262..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-// RUN: %llvmgxx -S %s -o - | grep {load volatile}
-// PR3320
-
-void test(volatile int *a) {
-    // should be a volatile load.
-    a[0];
-}