Remove 'break' dominated by 'return' in 'EmitBuiltinExpr'.

llvm-svn: 203080
This commit is contained in:
Ted Kremenek 2014-03-06 05:37:38 +00:00
parent 7bceca1fcf
commit 90097491ed
1 changed files with 0 additions and 1 deletions

View File

@ -1311,7 +1311,6 @@ RValue CodeGenFunction::EmitBuiltinExpr(const FunctionDecl *FD,
llvm::Type *ArgType = Base->getType();
Value *F = CGM.getIntrinsic(Intrinsic::pow, ArgType);
return RValue::get(Builder.CreateCall2(F, Base, Exponent));
break;
}
case Builtin::BIfma: