From b92fb33409bb46ca3a1a8ead5cbb958b7f130442 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Thu, 25 May 2023 23:41:34 -0700 Subject: [PATCH] [CodeGen] Remove unused member variable NextBlockInfo The last use was removed by: commit c9a52de0026093327daedda7ea2eead8b64657b4 Author: Akira Hatanaka Date: Wed Jun 3 16:41:50 2020 -0700 --- clang/lib/CodeGen/CGBlocks.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/clang/lib/CodeGen/CGBlocks.h b/clang/lib/CodeGen/CGBlocks.h index e8857d9..4ef1ae9 100644 --- a/clang/lib/CodeGen/CGBlocks.h +++ b/clang/lib/CodeGen/CGBlocks.h @@ -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; -- 2.7.4