From: Dan Gohman Date: Tue, 11 Dec 2007 15:55:52 +0000 (+0000) Subject: Rename these tests to use the appropriate suffixes. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7228c9e92c2199705e3e64f5500e571e81898d02;p=oota-llvm.git Rename these tests to use the appropriate suffixes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44867 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/C++Frontend/2007-10-01-StructResize.cpp b/test/C++Frontend/2007-10-01-StructResize.cpp new file mode 100644 index 00000000000..d37057a901a --- /dev/null +++ b/test/C++Frontend/2007-10-01-StructResize.cpp @@ -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 index d37057a901a..00000000000 --- a/test/C++Frontend/2007-10-01-StructResize.ll +++ /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 index e87a43ffc97..00000000000 --- a/test/FrontendObjC/2007-10-18-ProDescriptor.ll +++ /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 index 00000000000..e87a43ffc97 --- /dev/null +++ b/test/FrontendObjC/2007-10-18-ProDescriptor.m @@ -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 +