X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=blobdiff_plain;f=include%2Fllvm%2FCodeGen%2FMachineBasicBlock.h;h=fd786f68fb653b240015fd7cb58d351470dc50f6;hp=9585b29a5dc30ce145b6bc63c45019a145471e30;hb=20a42bb20d43b80e322c95dd99b64a5a4566fe08;hpb=5666fc71f0e2ed2c0400d8bca079a1dd3f33fe53;ds=sidebyside diff --git a/include/llvm/CodeGen/MachineBasicBlock.h b/include/llvm/CodeGen/MachineBasicBlock.h index 9585b29a5dc..fd786f68fb6 100644 --- a/include/llvm/CodeGen/MachineBasicBlock.h +++ b/include/llvm/CodeGen/MachineBasicBlock.h @@ -81,10 +81,6 @@ public: }; private: - // XXX-update: A flag that checks whether we can eliminate this machine basic - // block. - bool canEliminateMachineBB; - typedef ilist Instructions; Instructions Insts; const BasicBlock *BB; @@ -128,6 +124,10 @@ private: /// is only computed once and is cached. mutable MCSymbol *CachedMCSymbol = nullptr; + // XXX-update: A flag that checks whether we can eliminate this machine basic + // block. + bool canEliminateMachineBB; + // Intrusive list support MachineBasicBlock() {}