From 685f2d6895f58246bfce4dc1b654c7f75a97aae9 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Tue, 14 Apr 2015 13:26:11 +0000 Subject: [PATCH] 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 --- tools/lli/OrcLazyJIT.cpp | 1 + 1 file changed, 1 insertion(+) 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[]) { -- 2.34.1