Remove redundant `return`.

llvm-svn: 275528
This commit is contained in:
Rui Ueyama 2016-07-15 04:32:11 +00:00
parent 05ef4cff44
commit 177746a739
1 changed files with 0 additions and 1 deletions

View File

@ -150,7 +150,6 @@ uint64_t ExprParser::apply(StringRef Op, uint64_t L, uint64_t R) {
if (Op == "&")
return L & R;
llvm_unreachable("invalid operator");
return 0;
}
// This is a part of the operator-precedence parser.