[CodeGen] Remove unused member variable NextBlockInfo
authorKazu Hirata <kazu@google.com>
Fri, 26 May 2023 06:41:34 +0000 (23:41 -0700)
committerKazu Hirata <kazu@google.com>
Fri, 26 May 2023 06:41:34 +0000 (23:41 -0700)
The last use was removed by:

  commit c9a52de0026093327daedda7ea2eead8b64657b4
  Author: Akira Hatanaka <ahatanaka@apple.com>
  Date:   Wed Jun 3 16:41:50 2020 -0700

clang/lib/CodeGen/CGBlocks.h

index e8857d9..4ef1ae9 100644 (file)
@@ -287,12 +287,6 @@ public:
   // This could be zero if no forced alignment is required.
   CharUnits BlockHeaderForcedGapSize;
 
-  /// The next block in the block-info chain.  Invalid if this block
-  /// info is not part of the CGF's block-info chain, which is true
-  /// if it corresponds to a global block or a block whose expression
-  /// has been encountered.
-  CGBlockInfo *NextBlockInfo;
-
   void buildCaptureMap() {
     for (auto &C : SortedCaptures)
       Captures[C.Cap->getVariable()] = &C;