Skip to content
Snippets Groups Projects
Commit 7b6f634b authored by Bob Wilson's avatar Bob Wilson
Browse files

Fix some minor whitespace issues.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@201526 91177308-0d34-0410-b5e6-96231b3b80d8
parent 48e74b6e
No related branches found
No related tags found
No related merge requests found
...@@ -1298,7 +1298,7 @@ Value *ScalarExprEmitter::VisitCastExpr(CastExpr *CE) { ...@@ -1298,7 +1298,7 @@ Value *ScalarExprEmitter::VisitCastExpr(CastExpr *CE) {
Value *Src = Visit(const_cast<Expr*>(E)); Value *Src = Visit(const_cast<Expr*>(E));
llvm::Type *SrcTy = Src->getType(); llvm::Type *SrcTy = Src->getType();
llvm::Type *DstTy = ConvertType(DestTy); llvm::Type *DstTy = ConvertType(DestTy);
if (SrcTy->isPtrOrPtrVectorTy() && DstTy->isPtrOrPtrVectorTy() && if (SrcTy->isPtrOrPtrVectorTy() && DstTy->isPtrOrPtrVectorTy() &&
SrcTy->getPointerAddressSpace() != DstTy->getPointerAddressSpace()) { SrcTy->getPointerAddressSpace() != DstTy->getPointerAddressSpace()) {
llvm::Type *MidTy = CGF.CGM.getDataLayout().getIntPtrType(SrcTy); llvm::Type *MidTy = CGF.CGM.getDataLayout().getIntPtrType(SrcTy);
return Builder.CreateIntToPtr(Builder.CreatePtrToInt(Src, MidTy), DstTy); return Builder.CreateIntToPtr(Builder.CreatePtrToInt(Src, MidTy), DstTy);
......
...@@ -394,7 +394,7 @@ static void GenOpenCLArgMetadata(const FunctionDecl *FD, llvm::Function *Fn, ...@@ -394,7 +394,7 @@ static void GenOpenCLArgMetadata(const FunctionDecl *FD, llvm::Function *Fn,
if (ty->isImageType()) if (ty->isImageType())
AddrSpc = AddrSpc =
CGM.getContext().getTargetAddressSpace(LangAS::opencl_global); CGM.getContext().getTargetAddressSpace(LangAS::opencl_global);
addressQuals.push_back(Builder.getInt32(AddrSpc)); addressQuals.push_back(Builder.getInt32(AddrSpc));
// Get argument type name. // Get argument type name.
......
...@@ -480,8 +480,7 @@ llvm::MDNode *CodeGenPGO::createBranchWeights(uint64_t TrueCount, ...@@ -480,8 +480,7 @@ llvm::MDNode *CodeGenPGO::createBranchWeights(uint64_t TrueCount,
return MDHelper.createBranchWeights(TrueCount + 1, FalseCount + 1); return MDHelper.createBranchWeights(TrueCount + 1, FalseCount + 1);
} }
llvm::MDNode * llvm::MDNode *CodeGenPGO::createBranchWeights(ArrayRef<uint64_t> Weights) {
CodeGenPGO::createBranchWeights(ArrayRef<uint64_t> Weights) {
llvm::MDBuilder MDHelper(CGM.getLLVMContext()); llvm::MDBuilder MDHelper(CGM.getLLVMContext());
// TODO: need to scale down to 32-bits, instead of just truncating. // TODO: need to scale down to 32-bits, instead of just truncating.
// According to Laplace's Rule of Succession, it is better to compute the // According to Laplace's Rule of Succession, it is better to compute the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment