brintos

brintos / llvm-project-archived public Read only

0
0
Text · 991 B · d8eff69 Raw
29 lines · cpp
1//===----------------------------------------------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9// UNSUPPORTED: c++0310 11// ::quick_exit and ::at_quick_exit were not implemented in older versions of macOS12// TODO: We should never be using `darwin` as the triple, but LLVM's config.guess script13//       guesses the host triple to be darwin instead of macosx when on macOS.14// XFAIL: target={{.+}}-apple-macosx10.{{13|14|15}}15// XFAIL: target={{.+}}-apple-macosx{{11|12|13|14}}{{(.+)?}}16// XFAIL: target={{.+}}-apple-darwin{{17|18|19|20|21|22|23}}{{(.+)?}}17 18// test quick_exit and at_quick_exit19 20#include <cstdlib>21 22void f() {}23 24int main(int, char**) {25    std::at_quick_exit(f);26    std::quick_exit(0);27    return 0;28}29