diff options
author | Chris Lattner <sabre@nondot.org> | 2005-10-25 17:58:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-10-25 17:58:00 +0000 |
commit | 304a564c1f84eaaee8dc218a2eb57443c370e12f (patch) | |
tree | f5b1b96ebe0e5d00517292dcde3e003390dcb8b3 /include/llvm/Function.h | |
parent | 0366fcb396c0f1cc1cf0b8bbfcabdabcfedb8cc0 (diff) |
Add a missing Module::setTargetTriple method.
Remove Function::aiterator and Module::giterator typedefs (and const versions)
as they should have been removed when abegin/gbegin were removed. Thanks to
alkis for bringing this to my attn.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23978 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Function.h')
-rw-r--r-- | include/llvm/Function.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/llvm/Function.h b/include/llvm/Function.h index 14a5e48a1c..58184de3b1 100644 --- a/include/llvm/Function.h +++ b/include/llvm/Function.h @@ -57,8 +57,6 @@ public: typedef ArgumentListType::iterator arg_iterator; typedef ArgumentListType::const_iterator const_arg_iterator; - typedef arg_iterator aiterator; // legacy, deprecated - typedef const_arg_iterator const_aiterator; // legacy, deprecated private: // Important things that make up a function! |