aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineBasicBlock.h
diff options
context:
space:
mode:
authorAlkis Evlogimenos <alkis@evlogimenos.com>2004-02-12 18:49:07 +0000
committerAlkis Evlogimenos <alkis@evlogimenos.com>2004-02-12 18:49:07 +0000
commitab8672c8bb83e722b856eac67863542ea7e0cbb2 (patch)
tree935f9fd884699a934a5fc3a96ef5e55a6619c63e /include/llvm/CodeGen/MachineBasicBlock.h
parentaa55c8cc38d57fce6e169112da63137d35d4e19c (diff)
Add parent pointer to MachineInstr that points to owning
MachineBasicBlock. Also change opcode to a short and numImplicitRefs to an unsigned char so that overall MachineInstr's size stays the same. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11357 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineBasicBlock.h')
-rw-r--r--include/llvm/CodeGen/MachineBasicBlock.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineBasicBlock.h b/include/llvm/CodeGen/MachineBasicBlock.h
index 7285057210..94409c5ef4 100644
--- a/include/llvm/CodeGen/MachineBasicBlock.h
+++ b/include/llvm/CodeGen/MachineBasicBlock.h
@@ -15,7 +15,6 @@
#define LLVM_CODEGEN_MACHINEBASICBLOCK_H
#include "llvm/CodeGen/MachineInstr.h"
-#include "Support/ilist"
namespace llvm {
@@ -28,7 +27,9 @@ public:
MachineBasicBlock *Prev, *Next;
const BasicBlock *BB;
public:
- MachineBasicBlock(const BasicBlock *bb = 0) : Prev(0), Next(0), BB(bb) {}
+ MachineBasicBlock(const BasicBlock *bb = 0) : Prev(0), Next(0), BB(bb) {
+ Insts.parent = this;
+ }
~MachineBasicBlock() {}
/// getBasicBlock - Return the LLVM basic block that this instance