Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libc / src / stdlib / gpu / abort.cpp
blobf3b052be6d24db867dca2a9ed09f047cd68af382
1 //===-- GPU implementation of abort ---------------------------------------===//
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-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "src/__support/RPC/rpc_client.h"
10 #include "src/__support/common.h"
12 #include "src/stdlib/abort.h"
14 namespace LIBC_NAMESPACE {
16 LLVM_LIBC_FUNCTION(void, abort, ()) {
17 // We want to first make sure the server is listening before we abort.
18 rpc::Client::Port port = rpc::client.open<RPC_ABORT>();
19 port.send_and_recv([](rpc::Buffer *) {}, [](rpc::Buffer *) {});
20 port.send([&](rpc::Buffer *) {});
21 port.close();
23 gpu::end_program();
26 } // namespace LIBC_NAMESPACE