summaryrefslogtreecommitdiff
path: root/libmudflap/testsuite/libmudflap.c++/pass57-frag.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libmudflap/testsuite/libmudflap.c++/pass57-frag.cxx')
-rw-r--r--libmudflap/testsuite/libmudflap.c++/pass57-frag.cxx28
1 files changed, 0 insertions, 28 deletions
diff --git a/libmudflap/testsuite/libmudflap.c++/pass57-frag.cxx b/libmudflap/testsuite/libmudflap.c++/pass57-frag.cxx
deleted file mode 100644
index 8be1a2d1113..00000000000
--- a/libmudflap/testsuite/libmudflap.c++/pass57-frag.cxx
+++ /dev/null
@@ -1,28 +0,0 @@
-#include <vector>
-#include <string>
-
-class fitscolumn
- {
- private:
- std::string name_, unit_;
- int i, t;
- public:
- fitscolumn (const std::string &nm, const std::string &un,int i1,int t1)
- : name_(nm), unit_(un), i(i1), t(t1){}
- };
-
-void init_bintab(std::vector<fitscolumn> & columns_)
-{
- char ttype[81], tunit[81], tform[81];
- long repc;
- int typecode;
- columns_.push_back (fitscolumn (ttype,tunit,1,typecode));
-}
-
-int main ()
-{
- return 0;
-}
-
-/* Ignore a warning that is irrelevant to the purpose of this test. */
-/* { dg-prune-output ".*mudflap cannot track unknown size extern.*" } */