mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
dbb1735673
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2362 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
478 B
C++
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
|