aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/abi/empty17.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/abi/empty17.C')
-rw-r--r--gcc/testsuite/g++.dg/abi/empty17.C17
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc/testsuite/g++.dg/abi/empty17.C b/gcc/testsuite/g++.dg/abi/empty17.C
deleted file mode 100644
index c7a37c0..0000000
--- a/gcc/testsuite/g++.dg/abi/empty17.C
+++ /dev/null
@@ -1,17 +0,0 @@
-// PR c++/60336
-// { dg-do run }
-// { dg-options "-Wabi=9 -x c" }
-// { dg-additional-sources "empty17a.c" }
-// { dg-prune-output "command line option" }
-
-#include "empty17.h"
-extern "C" void fun(struct dummy, struct foo);
-
-int main()
-{
- struct dummy d;
- struct foo f = { -1, -2, -3, -4, -5 };
-
- fun(d, f); // { dg-warning "empty" }
- return 0;
-}