llvm-6502/include/llvm/Transforms/IPO/Internalize.h
2002-04-28 05:43:27 +00:00

16 lines
478 B
C++

//===-- Transforms/IPO/Internalize.h - Mark functions internal ---*- C++ -*--=//
//
// 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.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TRANSFORM_IPO_INTERNALIZE_H
#define LLVM_TRANSFORM_IPO_INTERNALIZE_H
class Pass;
Pass *createInternalizePass();
#endif