aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineBasicBlock.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-05-04 18:16:01 +0000
committerChris Lattner <sabre@nondot.org>2006-05-04 18:16:01 +0000
commit469647bf384550b6a4bb06eab9f466a15be50037 (patch)
treeec67d75a93d6cc410287439ae40a3d87535ab35f /llvm/lib/CodeGen/MachineBasicBlock.cpp
parent10b71c0d08095e256aa3ed8e088abb41087ca24e (diff)
downloadllvm-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.cpp2
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;
}