aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineBasicBlock.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-05-04 01:26:39 +0000
committerChris Lattner <sabre@nondot.org>2006-05-04 01:26:39 +0000
commitee64b6b40fd01eb37ae8225b5bc342b79846b245 (patch)
tree2d330eb38aeab43085bda6c8067eb2ff2e8fe448 /llvm/lib/CodeGen/MachineBasicBlock.cpp
parent940cc978ef23d2f3e35904a6ebd9bd456b00f963 (diff)
downloadllvm-ee64b6b40fd01eb37ae8225b5bc342b79846b245.zip
llvm-ee64b6b40fd01eb37ae8225b5bc342b79846b245.tar.gz
llvm-ee64b6b40fd01eb37ae8225b5bc342b79846b245.tar.bz2
Remove a bunch more dead V9 specific stuff
llvm-svn: 28094
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 ee8da67..5b09519 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);
+ MachineInstr* dummy = new MachineInstr(0, 0, true, true);
LeakDetector::removeGarbageObject(dummy);
return dummy;
}