*** empty log message ***
[oota-llvm.git] / include / llvm / Transforms / IPO / Internalize.h
1 //===-- Transforms/IPO/Internalize.h - Mark functions internal ---*- C++ -*--=//
2 //
3 // This pass loops over all of the functions in the input module, looking for a
4 // main function.  If a main function is found, all other functions are marked
5 // as internal.
6 //
7 //===----------------------------------------------------------------------===//
8
9 #ifndef LLVM_TRANSFORM_IPO_INTERNALIZE_H
10 #define LLVM_TRANSFORM_IPO_INTERNALIZE_H
11
12 class Pass;
13 Pass *createInternalizePass();
14
15 #endif