diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-04 18:16:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-04 18:16:01 +0000 |
commit | 469647bf384550b6a4bb06eab9f466a15be50037 (patch) | |
tree | ec67d75a93d6cc410287439ae40a3d87535ab35f /llvm/lib/CodeGen/MachineBasicBlock.cpp | |
parent | 10b71c0d08095e256aa3ed8e088abb41087ca24e (diff) | |
download | llvm-469647bf384550b6a4bb06eab9f466a15be50037.zip llvm-469647bf384550b6a4bb06eab9f466a15be50037.tar.gz llvm-469647bf384550b6a4bb06eab9f466a15be50037.tar.bz2 |
Remove and simplify some more machineinstr/machineoperand stuff.
llvm-svn: 28105
Diffstat (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineBasicBlock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp index 5b09519..ee8da67 100644 --- a/llvm/lib/CodeGen/MachineBasicBlock.cpp +++ b/llvm/lib/CodeGen/MachineBasicBlock.cpp @@ -47,7 +47,7 @@ void ilist_traits<MachineBasicBlock>::removeNodeFromList(MachineBasicBlock* N) { MachineInstr* ilist_traits<MachineInstr>::createSentinel() { - MachineInstr* dummy = new MachineInstr(0, 0, true, true); + MachineInstr* dummy = new MachineInstr(0, 0); LeakDetector::removeGarbageObject(dummy); return dummy; } |