summaryrefslogtreecommitdiff
path: root/tools/g++5ABIcheck/test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/g++5ABIcheck/test.cc')
-rw-r--r--tools/g++5ABIcheck/test.cc13
1 files changed, 0 insertions, 13 deletions
diff --git a/tools/g++5ABIcheck/test.cc b/tools/g++5ABIcheck/test.cc
deleted file mode 100644
index c3a915c029..0000000000
--- a/tools/g++5ABIcheck/test.cc
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <cstdio>
-#include <string>
-
-void check (std::string const& str) {
- std::printf ("%s\n", str.c_str());
-}
-
-int main (int argc, char **argv) {
- std::printf ("gcc %s\n", __VERSION__);
- std::string test("gcc5/libstc++11");
- check (test);
- return 0;
-}