Rename these tests to use the appropriate suffixes.
authorDan Gohman <gohman@apple.com>
Tue, 11 Dec 2007 15:55:52 +0000 (15:55 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 11 Dec 2007 15:55:52 +0000 (15:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44867 91177308-0d34-0410-b5e6-96231b3b80d8

test/C++Frontend/2007-10-01-StructResize.cpp [new file with mode: 0644]
test/C++Frontend/2007-10-01-StructResize.ll [deleted file]
test/FrontendObjC/2007-10-18-ProDescriptor.ll [deleted file]
test/FrontendObjC/2007-10-18-ProDescriptor.m [new file with mode: 0644]

diff --git a/test/C++Frontend/2007-10-01-StructResize.cpp b/test/C++Frontend/2007-10-01-StructResize.cpp
new file mode 100644 (file)
index 0000000..d37057a
--- /dev/null
@@ -0,0 +1,14 @@
+// RUN: %llvmgxx -c %s -o /dev/null
+
+#pragma pack(4)
+
+struct Bork {
+  unsigned int f1 : 3;
+  unsigned int f2 : 30;
+};
+
+int Foo(Bork *hdr) {
+  hdr->f1 = 7;
+  hdr->f2 = 927;
+}
+
diff --git a/test/C++Frontend/2007-10-01-StructResize.ll b/test/C++Frontend/2007-10-01-StructResize.ll
deleted file mode 100644 (file)
index d37057a..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// RUN: %llvmgxx -c %s -o /dev/null
-
-#pragma pack(4)
-
-struct Bork {
-  unsigned int f1 : 3;
-  unsigned int f2 : 30;
-};
-
-int Foo(Bork *hdr) {
-  hdr->f1 = 7;
-  hdr->f2 = 927;
-}
-
diff --git a/test/FrontendObjC/2007-10-18-ProDescriptor.ll b/test/FrontendObjC/2007-10-18-ProDescriptor.ll
deleted file mode 100644 (file)
index e87a43f..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// RUN: %llvmgcc -x objective-c -c %s -o /dev/null
-@protocol O
-@end
-@interface O < O > {
-}
-@end
-struct A {
-};
-@protocol AB
-- (unsigned) ver;
-@end
-@interface AGy:O < AB > {
-}
-@end
-@implementation AGy
-- (unsigned) ver {
-}
-@end
-
diff --git a/test/FrontendObjC/2007-10-18-ProDescriptor.m b/test/FrontendObjC/2007-10-18-ProDescriptor.m
new file mode 100644 (file)
index 0000000..e87a43f
--- /dev/null
@@ -0,0 +1,19 @@
+// RUN: %llvmgcc -x objective-c -c %s -o /dev/null
+@protocol O
+@end
+@interface O < O > {
+}
+@end
+struct A {
+};
+@protocol AB
+- (unsigned) ver;
+@end
+@interface AGy:O < AB > {
+}
+@end
+@implementation AGy
+- (unsigned) ver {
+}
+@end
+