diff options
Diffstat (limited to 'llvm/test/Regression/C++Frontend/ConstructorDestructorAttributes.c')
-rw-r--r-- | llvm/test/Regression/C++Frontend/ConstructorDestructorAttributes.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/llvm/test/Regression/C++Frontend/ConstructorDestructorAttributes.c b/llvm/test/Regression/C++Frontend/ConstructorDestructorAttributes.c deleted file mode 100644 index 1a5fb9c4de0..00000000000 --- a/llvm/test/Regression/C++Frontend/ConstructorDestructorAttributes.c +++ /dev/null @@ -1,14 +0,0 @@ -#include <stdio.h> - -void ctor() __attribute__((constructor)); - -void ctor() { - printf("Create!\n"); -} -void dtor() __attribute__((destructor)); - -void dtor() { - printf("Create!\n"); -} - -int main() { return 0; } |