Move GlobalUniqueCount up into CGM.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64473 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h
index 4b1a06e..0d9caaa 100644
--- a/lib/CodeGen/CodeGenModule.h
+++ b/lib/CodeGen/CodeGenModule.h
@@ -129,6 +129,9 @@
   
   const llvm::Type *BlockDescriptorType;
   const llvm::Type * GenericBlockLiteralType;
+  struct {
+    int GlobalUniqueCount;
+  } Block;
 
   std::vector<llvm::Function *> BuiltinFunctions;
 public:
@@ -142,7 +145,7 @@
   void Release();
 
   llvm::Constant *getNSConcreteGlobalBlock();
-
+  int getGlobalUniqueCount() { return ++Block.GlobalUniqueCount; }
   const llvm::Type *getBlockDescriptorType();
 
   const llvm::Type *getGenericBlockLiteralType();