summaryrefslogtreecommitdiff
path: root/tools/lli
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2015-04-14 13:26:11 +0000
committerAaron Ballman <aaron@aaronballman.com>2015-04-14 13:26:11 +0000
commit685f2d6895f58246bfce4dc1b654c7f75a97aae9 (patch)
treec7cb2a7a6c2093322ab9743468e2165b5a8f27b2 /tools/lli
parent01b026b0231022e1f5607e103dc7720893478617 (diff)
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
Diffstat (limited to 'tools/lli')
-rw-r--r--tools/lli/OrcLazyJIT.cpp1
1 files changed, 1 insertions, 0 deletions
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<Module> M, int ArgC, char* ArgV[]) {