diff options
author | br <br@FreeBSD.org> | 2016-01-22 16:42:06 +0000 |
---|---|---|
committer | br <br@FreeBSD.org> | 2016-01-22 16:42:06 +0000 |
commit | a75e74c454066abe0741256b48360594debf2924 (patch) | |
tree | 14fb812b29cc99def132d68d640dd91d7ee9c269 /contrib/llvm/projects/libunwind/src/UnwindCursor.hpp | |
parent | 87eab6d83d47fa66c163ec1f97b6929a7449af2d (diff) | |
download | FreeBSD-src-a75e74c454066abe0741256b48360594debf2924.zip FreeBSD-src-a75e74c454066abe0741256b48360594debf2924.tar.gz |
Add stubs for RISC-V ISA so libunwind can be compiled.
Reviewed by: emaste
Sponsored by: DARPA, AFRL
Sponsored by: HEIF5
Differential Revision: https://reviews.freebsd.org/D5035
Diffstat (limited to 'contrib/llvm/projects/libunwind/src/UnwindCursor.hpp')
-rw-r--r-- | contrib/llvm/projects/libunwind/src/UnwindCursor.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/llvm/projects/libunwind/src/UnwindCursor.hpp b/contrib/llvm/projects/libunwind/src/UnwindCursor.hpp index 9068316..166e2fd 100644 --- a/contrib/llvm/projects/libunwind/src/UnwindCursor.hpp +++ b/contrib/llvm/projects/libunwind/src/UnwindCursor.hpp @@ -562,6 +562,10 @@ private: compact_unwind_encoding_t dwarfEncoding(Registers_or1k &) const { return 0; } + + compact_unwind_encoding_t dwarfEncoding(Registers_riscv &) const { + return 0; + } #endif // _LIBUNWIND_SUPPORT_DWARF_UNWIND |