diff options
author | George Burgess IV <george.burgess.iv@gmail.com> | 2016-11-08 03:30:49 +0000 |
---|---|---|
committer | George Burgess IV <george.burgess.iv@gmail.com> | 2016-11-08 03:30:49 +0000 |
commit | b9bd6fad10218d34dccedce666f5cf6774553321 (patch) | |
tree | fbb90d6945efcf4bcf9b8deb17bae05259eb241b /clang/lib/CodeGen | |
parent | ba8761bc7f6747c9d2df8338d2aece0c41d08c29 (diff) | |
download | bcm5719-llvm-b9bd6fad10218d34dccedce666f5cf6774553321.tar.gz bcm5719-llvm-b9bd6fad10218d34dccedce666f5cf6774553321.zip |
Make a const variable static. NFC.
llvm-svn: 286201
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r-- | clang/lib/CodeGen/CGBlocks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGBlocks.cpp b/clang/lib/CodeGen/CGBlocks.cpp index a9a0dea4964..658dfc600cf 100644 --- a/clang/lib/CodeGen/CGBlocks.cpp +++ b/clang/lib/CodeGen/CGBlocks.cpp @@ -189,7 +189,7 @@ static llvm::Constant *buildBlockDescriptor(CodeGenModule &CGM, */ /// The number of fields in a block header. -const unsigned BlockHeaderSize = 5; +const static unsigned BlockHeaderSize = 5; namespace { /// A chunk of data that we actually have to capture in the block. |