diff options
author | George Burgess IV <george.burgess.iv@gmail.com> | 2016-11-03 02:21:43 +0000 |
---|---|---|
committer | George Burgess IV <george.burgess.iv@gmail.com> | 2016-11-03 02:21:43 +0000 |
commit | 70d15b36e5200b6a7abf58e411d651573b8a8080 (patch) | |
tree | 7d3a86957851d810bfcc1e1a96689da149f6e514 /clang/lib/CodeGen/CGBlocks.cpp | |
parent | e4e9e281a1fbc915b6567a003fd21cc5492cde65 (diff) | |
download | bcm5719-llvm-70d15b36e5200b6a7abf58e411d651573b8a8080.tar.gz bcm5719-llvm-70d15b36e5200b6a7abf58e411d651573b8a8080.zip |
[CodeGen] Use StringRef. NFC.
Looks like CurFn's name outlives FunctionName, so we can just pass
StringRefs around rather than going from a StringRef to a std::string
to a const char* to a StringRef.
llvm-svn: 285873
Diffstat (limited to 'clang/lib/CodeGen/CGBlocks.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGBlocks.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/CodeGen/CGBlocks.cpp b/clang/lib/CodeGen/CGBlocks.cpp index 933cd2a62cc..a9a0dea4964 100644 --- a/clang/lib/CodeGen/CGBlocks.cpp +++ b/clang/lib/CodeGen/CGBlocks.cpp @@ -1052,10 +1052,10 @@ Address CodeGenFunction::GetAddrOfBlockDecl(const VarDecl *variable, } llvm::Constant * -CodeGenModule::GetAddrOfGlobalBlock(const BlockExpr *blockExpr, - const char *name) { - CGBlockInfo blockInfo(blockExpr->getBlockDecl(), name); - blockInfo.BlockExpression = blockExpr; +CodeGenModule::GetAddrOfGlobalBlock(const BlockExpr *BE, + StringRef Name) { + CGBlockInfo blockInfo(BE->getBlockDecl(), Name); + blockInfo.BlockExpression = BE; // Compute information about the layout, etc., of this block. computeBlockInfo(*this, nullptr, blockInfo); |