Remove some empty statements

Cleanup only.

llvm-svn: 206709
This commit is contained in:
Alp Toker 2014-04-19 23:55:49 +00:00
parent a2bfd66e0e
commit 5f072d814f
2 changed files with 2 additions and 2 deletions

View File

@ -1460,7 +1460,7 @@ Value *ScalarExprEmitter::VisitCastExpr(CastExpr *CE) {
// Splat the element across to all elements
unsigned NumElements = cast<llvm::VectorType>(DstTy)->getNumElements();
return Builder.CreateVectorSplat(NumElements, Elt, "splat");;
return Builder.CreateVectorSplat(NumElements, Elt, "splat");
}
case CK_IntegralCast:

View File

@ -2690,7 +2690,7 @@ CodeGenModule::GetAddrOfConstantStringFromLiteral(const StringLiteral *S) {
LT = llvm::GlobalValue::LinkOnceODRLinkage;
GlobalVariableName = MangledNameBuffer;
} else {
LT = llvm::GlobalValue::PrivateLinkage;;
LT = llvm::GlobalValue::PrivateLinkage;
GlobalVariableName = ".str";
}