Mercurial > hg > CbC > CbC_llvm
view libunwind/test/unw_getcontext.pass.cpp @ 265:31d058e83c98 current
fix llvm again
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:49 +0900 |
parents | c4bab56944e8 |
children |
line wrap: on
line source
// -*- 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 // //===----------------------------------------------------------------------===// #undef NDEBUG #include <assert.h> #include <libunwind.h> int main(int, char**) { unw_context_t context; int ret = unw_getcontext(&context); assert(ret == UNW_ESUCCESS); return 0; }