1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

[DWARFYAML] Remove 'default' tag. NFC.

This patch is trying to make build bots happy.

Failed bots:
http://lab.llvm.org:8011/builders/ppc64le-lld-multistage-test/builds/10705
http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-android/builds/33595
This commit is contained in:
Xing GUO 2020-07-20 11:12:32 +08:00
parent d1e90bdbbe
commit 3b3d609a2b

View File

@ -510,8 +510,6 @@ writeRnglistEntry(raw_ostream &OS, const DWARFYAML::RnglistEntry &Entry,
return std::move(Err);
encodeULEB128(Entry.Values[1], OS);
break;
default:
llvm_unreachable("unrecognized range list encoding");
}
return OS.tell() - BeginOffset;