From: Alp Toker Date: Mon, 2 Jun 2014 04:34:10 +0000 (+0000) Subject: Silence -Wreturn-type warning X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=01fa655228c1e8460e1aaf23bc80cb669b1cefaa;p=oota-llvm.git Silence -Wreturn-type warning git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210005 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/GraphWriter.cpp b/lib/Support/GraphWriter.cpp index c26f6a141ec..1521475a8b8 100644 --- a/lib/Support/GraphWriter.cpp +++ b/lib/Support/GraphWriter.cpp @@ -127,6 +127,7 @@ static const char *getProgramName(GraphProgram::Name program) { case GraphProgram::CIRCO: return "circo"; } + llvm_unreachable("bad kind"); } bool llvm::DisplayGraph(StringRef FilenameRef, bool wait,