James Henderson | 6670262 | 2018-03-08 10:53:34 +0000 | [diff] [blame] | 1 | //===--- unittests/DebugInfo/DWARF/DwarfUtils.h -----------------*- C++ -*-===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 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 |
James Henderson | 6670262 | 2018-03-08 10:53:34 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #ifndef LLVM_UNITTESTS_DEBUG_INFO_DWARF_DWARFUTILS_H |
| 10 | #define LLVM_UNITTESTS_DEBUG_INFO_DWARF_DWARFUTILS_H |
| 11 | |
| 12 | #include <cstdint> |
| 13 | |
| 14 | namespace llvm { |
| 15 | |
| 16 | class Triple; |
| 17 | |
| 18 | namespace dwarf { |
| 19 | namespace utils { |
| 20 | |
| 21 | Triple getHostTripleForAddrSize(uint8_t AddrSize); |
| 22 | bool isConfigurationSupported(Triple &T); |
| 23 | |
| 24 | } // end namespace utils |
| 25 | } // end namespace dwarf |
| 26 | } // end namespace llvm |
| 27 | |
| 28 | #endif // LLVM_UNITTESTS_DEBUG_INFO_DWARF_DWARFUTILS_H |