summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/mpx/chkp-thunk-comdat-2.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.target/i386/mpx/chkp-thunk-comdat-2.cc')
-rw-r--r--gcc/testsuite/gcc.target/i386/mpx/chkp-thunk-comdat-2.cc26
1 files changed, 0 insertions, 26 deletions
diff --git a/gcc/testsuite/gcc.target/i386/mpx/chkp-thunk-comdat-2.cc b/gcc/testsuite/gcc.target/i386/mpx/chkp-thunk-comdat-2.cc
deleted file mode 100644
index 2b1abe9b67d..00000000000
--- a/gcc/testsuite/gcc.target/i386/mpx/chkp-thunk-comdat-2.cc
+++ /dev/null
@@ -1,26 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O2 -fcheck-pointer-bounds -mmpx" } */
-
-class c1
-{
-public:
- virtual int test1 (const char *);
-};
-
-class c2
-{
-public:
- int test2 (const char *);
-};
-
-int
-c1::test1 (const char *)
-{
- return 0;
-}
-
-int
-c2::test2 (const char *)
-{
- return 0;
-}