For PR1338: Rename test dirs
[oota-llvm.git] / test / CFrontend / 2007-09-05-ConstCtor.c
diff --git a/test/CFrontend/2007-09-05-ConstCtor.c b/test/CFrontend/2007-09-05-ConstCtor.c
deleted file mode 100644 (file)
index c267a59..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// RUN: %llvmgcc -xc -Os -c %s -o /dev/null
-// PR1641
-
-struct A {
-  unsigned long l;
-};
-
-void bar(struct A *a);
-
-void bork() {
-  const unsigned long vcgt = 'vcgt';
-  struct A a = { vcgt };
-  bar(&a);
-}