summaryrefslogtreecommitdiffstats
path: root/libcxx/test/language.support/support.start.term/quick_exit.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/test/language.support/support.start.term/quick_exit.pass.cpp')
-rw-r--r--libcxx/test/language.support/support.start.term/quick_exit.pass.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/libcxx/test/language.support/support.start.term/quick_exit.pass.cpp b/libcxx/test/language.support/support.start.term/quick_exit.pass.cpp
deleted file mode 100644
index bcfdbb75402..00000000000
--- a/libcxx/test/language.support/support.start.term/quick_exit.pass.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-
-// test quick_exit and at_quick_exit
-
-#include <cstdlib>
-
-void f() {}
-
-int main()
-{
-#ifdef _LIBCPP_HAS_QUICK_EXIT
- std::at_quick_exit(f);
- std::quick_exit(0);
-#endif
-}
OpenPOWER on IntegriCloud