1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

add an option to the internalize pass

llvm-svn: 23782
This commit is contained in:
Chris Lattner 2005-10-18 06:28:16 +00:00
parent 824a8efa08
commit 211f996c92

View File

@ -111,10 +111,12 @@ ModulePass *createPruneEHPass();
//===----------------------------------------------------------------------===//
/// createInternalizePass - This pass loops over all of the functions in the
/// input module, looking for a main function. If a main function is found, all
/// other functions are marked as internal.
/// input module, looking for a main function. If a list of symbols is
/// specified with the -internalize-public-api-* command line options, those
/// symbols are internalized. Otherwise if InternalizeEverything is set and
/// the main function is found, all other globals are marked as internal.
///
ModulePass *createInternalizePass();
ModulePass *createInternalizePass(bool InternalizeEverything);
//===----------------------------------------------------------------------===//
/// createDeadArgEliminationPass - This pass removes arguments from functions