diff options
author | Chris Lattner <sabre@nondot.org> | 2005-01-29 18:41:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-01-29 18:41:12 +0000 |
commit | e5c7b9a215cb1d847e6a175bc34e81c070693046 (patch) | |
tree | 4333abcd1e23d6efcf5b81bd8fec6e6f52c9f228 /llvm/lib/VMCore/BasicBlock.cpp | |
parent | f84ecca5f3a6a5a2d237f36b056a360f912d098f (diff) | |
download | bcm5719-llvm-e5c7b9a215cb1d847e6a175bc34e81c070693046.tar.gz bcm5719-llvm-e5c7b9a215cb1d847e6a175bc34e81c070693046.zip |
Adjust to ilist changes.
llvm-svn: 19923
Diffstat (limited to 'llvm/lib/VMCore/BasicBlock.cpp')
-rw-r--r-- | llvm/lib/VMCore/BasicBlock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/BasicBlock.cpp b/llvm/lib/VMCore/BasicBlock.cpp index 25507ce954e..78753a52366 100644 --- a/llvm/lib/VMCore/BasicBlock.cpp +++ b/llvm/lib/VMCore/BasicBlock.cpp @@ -48,7 +48,7 @@ namespace { }; } -Instruction *ilist_traits<Instruction>::createNode() { +Instruction *ilist_traits<Instruction>::createSentinal() { return new DummyInst(); } iplist<Instruction> &ilist_traits<Instruction>::getList(BasicBlock *BB) { |