diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2016-11-25 19:15:31 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2016-11-25 19:15:31 +0000 |
| commit | 4ee8c119c71a06dcad1e0fecc8c675e480e59337 (patch) | |
| tree | d0b329e28aa1f4a0fc00c9763bcb3b2f5bf505ea /include | |
| parent | 3b6b9a026ed26abe3a3f1470da00ae1f478c4aca (diff) | |
vendor/lldb/lldb-release_391-r289601vendor/lldb/lldb-release_39-r288847vendor/lldb/lldb-release_39-r288513vendor/lldb/lldb-release_39-r287912
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/lldb/Core/ArchSpec.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/lldb/Core/ArchSpec.h b/include/lldb/Core/ArchSpec.h index be760637c03e..b2d5f2d7f1a2 100644 --- a/include/lldb/Core/ArchSpec.h +++ b/include/lldb/Core/ArchSpec.h @@ -382,6 +382,14 @@ public: return m_core >= eCore_arm_generic && m_core < kNumCores; } + //------------------------------------------------------------------ + /// Return a string representing target application ABI. + /// + /// @return A string representing target application ABI. + //------------------------------------------------------------------ + std::string GetTargetABI() const; + + bool TripleVendorWasSpecified() const { @@ -677,6 +685,8 @@ public: m_flags = flags; } + void SetFlags(std::string elf_abi); + protected: bool IsEqualTo (const ArchSpec& rhs, bool exact_match) const; |
