From: Evan Cheng Date: Thu, 1 Mar 2007 02:00:40 +0000 (+0000) Subject: MachineBasicBlock fields should not be public. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3193a2d6b0e0b131d7160779cc1abff3ca68bd8b;p=oota-llvm.git MachineBasicBlock fields should not be public. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34766 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/MachineBasicBlock.h b/include/llvm/CodeGen/MachineBasicBlock.h index 1cb6e0b5c34..d076046407f 100644 --- a/include/llvm/CodeGen/MachineBasicBlock.h +++ b/include/llvm/CodeGen/MachineBasicBlock.h @@ -58,7 +58,6 @@ public: class BasicBlock; class MachineBasicBlock { -public: typedef ilist Instructions; Instructions Insts; MachineBasicBlock *Prev, *Next;