@@ -186,21 +186,11 @@ class Module {
186
186
// Module iterator forwarding functions
187
187
//
188
188
// Globals list interface
189
- inline global_iterator global_begin () { return GlobalList.begin (); }
190
- inline const_global_iterator global_begin () const { return GlobalList.begin (); }
191
- inline global_iterator global_end () { return GlobalList.end (); }
192
- inline const_global_iterator global_end () const { return GlobalList.end (); }
193
- inline bool global_empty () const { return GlobalList.empty (); }
194
-
195
- // ===--------------------------------------------------------------------===//
196
- // Module iterator forwarding functions (legacy, deprecated, will be removed)
197
- //
198
- // Globals list interface
199
- inline global_iterator gbegin () { return GlobalList.begin (); }
200
- inline const_global_iterator gbegin () const { return GlobalList.begin (); }
201
- inline global_iterator gend () { return GlobalList.end (); }
202
- inline const_global_iterator gend () const { return GlobalList.end (); }
203
- inline bool gempty () const { return GlobalList.empty (); }
189
+ global_iterator global_begin () { return GlobalList.begin (); }
190
+ const_global_iterator global_begin () const { return GlobalList.begin (); }
191
+ global_iterator global_end () { return GlobalList.end (); }
192
+ const_global_iterator global_end () const { return GlobalList.end (); }
193
+ bool global_empty () const { return GlobalList.empty (); }
204
194
205
195
// FunctionList interface
206
196
inline iterator begin () { return FunctionList.begin (); }
0 commit comments