1 //===----------------------------------------------------------------------===//
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-exception
7 //===----------------------------------------------------------------------===//
11 // ::quick_exit and ::at_quick_exit are not implemented on macOS.
12 // TODO: We should never be using `darwin` as the triple, but LLVM's config.guess script
13 // guesses the host triple to be darwin instead of macosx when on macOS.
14 // XFAIL: target={{.+}}-apple-macos{{.*}}
15 // XFAIL: target={{.+}}-apple-darwin{{.+}}
17 // test quick_exit and at_quick_exit
23 int main(int, char**) {
24 std::at_quick_exit(f
);