From: Patrik Hägglund Date: Thu, 24 May 2012 07:51:46 +0000 (+0000) Subject: Fix -Wcovered-switch-default warning. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=26dcb95dfcf4c0e70b9d1b63b168df27a25c9de1;p=platform%2Fupstream%2Fllvm.git Fix -Wcovered-switch-default warning. llvm-svn: 157381 --- diff --git a/llvm/lib/Support/GraphWriter.cpp b/llvm/lib/Support/GraphWriter.cpp index 32126ec..f6aaf83 100644 --- a/llvm/lib/Support/GraphWriter.cpp +++ b/llvm/lib/Support/GraphWriter.cpp @@ -99,7 +99,6 @@ void llvm::DisplayGraph(const sys::Path &Filename, bool wait, case GraphProgram::NEATO: args.push_back("-f"); args.push_back("neato");break; case GraphProgram::TWOPI: args.push_back("-f"); args.push_back("twopi");break; case GraphProgram::CIRCO: args.push_back("-f"); args.push_back("circo");break; - default: errs() << "Unknown graph layout name; using default.\n"; } args.push_back(0);