From: Aaron Ballman Date: Tue, 14 Apr 2015 13:26:11 +0000 (+0000) Subject: Silencing a -Wreturn-type warning, as the switch is fully-covered; NFC. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=685f2d6895f58246bfce4dc1b654c7f75a97aae9;p=oota-llvm.git Silencing a -Wreturn-type warning, as the switch is fully-covered; NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234884 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/lli/OrcLazyJIT.cpp b/tools/lli/OrcLazyJIT.cpp index 8771a91be7d..f60a00bcb83 100644 --- a/tools/lli/OrcLazyJIT.cpp +++ b/tools/lli/OrcLazyJIT.cpp @@ -103,6 +103,7 @@ OrcLazyJIT::TransformFtor OrcLazyJIT::createDebugDumper() { return std::move(M); }; } + llvm_unreachable("Unknown DumpKind"); } int llvm::runOrcLazyJIT(std::unique_ptr M, int ArgC, char* ArgV[]) {