| //===-- lib/Support/idioms.cpp ----------------------------------*- C++ -*-===// |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| // See https://llvm.org/LICENSE.txt for license information. |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| //===----------------------------------------------------------------------===// |
| #include "flang/Common/idioms.h" |
| namespace Fortran::common { |
| [[noreturn]] void die(const char *msg, ...) { |
| std::fputs("\nfatal internal error: ", stderr); |
| std::vfprintf(stderr, msg, ap); |
| } // namespace Fortran::common |