forked from OSchip/llvm-project
21 lines
631 B
C
21 lines
631 B
C
//===------------------------- __libunwind_config.h -----------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef ____LIBUNWIND_CONFIG_H__
|
|
#define ____LIBUNWIND_CONFIG_H__
|
|
|
|
#if defined(__arm__) && !defined(__USING_SJLJ_EXCEPTIONS__) && \
|
|
!defined(__ARM_DWARF_EH__)
|
|
#define _LIBUNWIND_ARM_EHABI 1
|
|
#else
|
|
#define _LIBUNWIND_ARM_EHABI 0
|
|
#endif
|
|
|
|
#endif // ____LIBUNWIND_CONFIG_H__
|