summaryrefslogtreecommitdiff
path: root/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
commit4efeab208cf0fe7ae2f68bcdd1264a8fdb18826c (patch)
tree141d2dde1a0a254585814948d1631d033b2711ca /lib/CodeGen/MachineBasicBlock.cpp
parentea50fabfd4e5fad25a25b312f64a9b2a53363586 (diff)
downloadllvm-4efeab208cf0fe7ae2f68bcdd1264a8fdb18826c.tar.gz
llvm-4efeab208cf0fe7ae2f68bcdd1264a8fdb18826c.tar.bz2
llvm-4efeab208cf0fe7ae2f68bcdd1264a8fdb18826c.tar.xz
Remove a bunch more dead V9 specific stuff
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28094 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r--lib/CodeGen/MachineBasicBlock.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/MachineBasicBlock.cpp b/lib/CodeGen/MachineBasicBlock.cpp
index ee8da6744e..5b095196d8 100644
--- a/lib/CodeGen/MachineBasicBlock.cpp
+++ b/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;
}