From ac3b52bb0da8ac7f43128fd0f3eb82bfb7c51114 Mon Sep 17 00:00:00 2001 From: "Duncan P. N. Exon Smith" Date: Tue, 6 Oct 2015 21:48:31 +0000 Subject: [PATCH] CodeGen: s/protected:/private:/ in MachineBasicBlock, NFC Nothing inherits from `MachineBasicBlock`, so this should have no real functionality change. Just makes the code easier to understand. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@249473 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/MachineBasicBlock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/CodeGen/MachineBasicBlock.h b/include/llvm/CodeGen/MachineBasicBlock.h index 33230f92828..8ebc8bd02cb 100644 --- a/include/llvm/CodeGen/MachineBasicBlock.h +++ b/include/llvm/CodeGen/MachineBasicBlock.h @@ -78,7 +78,7 @@ public: : PhysReg(PhysReg), LaneMask(LaneMask) {} }; -protected: +private: typedef ilist Instructions; Instructions Insts; const BasicBlock *BB; -- 2.34.1