diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2019-10-23 17:53:01 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2019-10-23 17:53:01 +0000 |
commit | ead246455adf1a215ec2715dad6533073a6beb4e (patch) | |
tree | f3f97a47d77053bf96fe74cdbd6fae74380e8a92 /tools/compact-unwind/compact-unwind-dumper.c | |
parent | fdb00c4408990a0a63ef7f496d809ce59f263bc5 (diff) |
Notes
Diffstat (limited to 'tools/compact-unwind/compact-unwind-dumper.c')
-rw-r--r-- | tools/compact-unwind/compact-unwind-dumper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/compact-unwind/compact-unwind-dumper.c b/tools/compact-unwind/compact-unwind-dumper.c index 570c42981a24f..d4706eaf53865 100644 --- a/tools/compact-unwind/compact-unwind-dumper.c +++ b/tools/compact-unwind/compact-unwind-dumper.c @@ -1149,7 +1149,7 @@ void print_encoding(struct baton baton, uint8_t *function_start, print_encoding_x86_64(baton, function_start, encoding); } else if (baton.cputype == CPU_TYPE_I386) { print_encoding_i386(baton, function_start, encoding); - } else if (baton.cputype == CPU_TYPE_ARM64) { + } else if (baton.cputype == CPU_TYPE_ARM64 || baton.cputype == CPU_TYPE_ARM64_32) { print_encoding_arm64(baton, function_start, encoding); } else if (baton.cputype == CPU_TYPE_ARM) { print_encoding_armv7(baton, function_start, encoding); |