diff options
Diffstat (limited to 'include/llvm/Module.h')
-rw-r--r-- | include/llvm/Module.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/llvm/Module.h b/include/llvm/Module.h index da5024b408..d02b3a050e 100644 --- a/include/llvm/Module.h +++ b/include/llvm/Module.h @@ -27,6 +27,13 @@ public: Module(); ~Module(); + // reduceApply - Apply the specified function to all of the methods in this + // module. The result values are or'd together and the result is returned. + // + bool reduceApply(bool (*Func)(Method*)); + bool reduceApply(bool (*Func)(const Method*)) const; + + // Get the underlying elements of the Module... inline const MethodListType &getMethodList() const { return MethodList; } inline MethodListType &getMethodList() { return MethodList; } |