diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2015-05-23 14:46:49 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2015-05-23 14:46:49 +0000 |
commit | c681c3d8904ea5dc833011f86c4469e277376c41 (patch) | |
tree | 6dfcc85cf6e5d11b242d8cda548334d346a85fd5 /llvm | |
parent | 0acf19ed539597dcb2bb920093c84844a3094d2d (diff) | |
download | bcm5719-llvm-c681c3d8904ea5dc833011f86c4469e277376c41.tar.gz bcm5719-llvm-c681c3d8904ea5dc833011f86c4469e277376c41.zip |
Silencing a spurious -Wreturn-type warning; NFC.
llvm-svn: 238099
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DIE.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp index dca85c73f00..c927bad4855 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp @@ -228,6 +228,7 @@ unsigned DIEValue::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const { SIZE_OF_IMPL(LocList) #undef SIZE_OF_IMPL } + llvm_unreachable("Unknown DIE kind"); } #ifndef NDEBUG |