[llvm-commits] CVS: llvm/lib/VMCore/BasicBlock.cpp
Chris Lattner
lattner at cs.uiuc.edu
Fri Jan 28 16:34:11 PST 2005
Changes in directory llvm/lib/VMCore:
BasicBlock.cpp updated: 1.51 -> 1.52
---
Log message:
Adjust to changes in User class.
---
Diffs of the changes: (+1 -1)
BasicBlock.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/VMCore/BasicBlock.cpp
diff -u llvm/lib/VMCore/BasicBlock.cpp:1.51 llvm/lib/VMCore/BasicBlock.cpp:1.52
--- llvm/lib/VMCore/BasicBlock.cpp:1.51 Sat Dec 11 16:10:29 2004
+++ llvm/lib/VMCore/BasicBlock.cpp Fri Jan 28 18:33:59 2005
@@ -26,7 +26,7 @@
/// DummyInst - An instance of this class is used to mark the end of the
/// instruction list. This is not a real instruction.
struct DummyInst : public Instruction {
- DummyInst() : Instruction(Type::VoidTy, OtherOpsEnd) {
+ DummyInst() : Instruction(Type::VoidTy, OtherOpsEnd, 0, 0) {
// This should not be garbage monitored.
LeakDetector::removeGarbageObject(this);
}
More information about the llvm-commits
mailing list