For PR1338: Rename test dirs
[oota-llvm.git] / test / CFrontend / sret.c
diff --git a/test/CFrontend/sret.c b/test/CFrontend/sret.c
deleted file mode 100644 (file)
index 11ac5d6..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-// RUN: %llvmgcc %s -S -emit-llvm -O0 -o - | grep sret | count 5
-
-struct abc {
- long a;
- long b;
- long c;
-};
-struct abc foo1(void);
-struct abc foo2();
-
-void bar() {
-  struct abc dummy1 = foo1();
-  struct abc dummy2 = foo2();
-}