mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Move the strip pass from Scalar to IPO lib
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18438 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b0ea864bbd
commit
92f6c15d8f
@ -23,6 +23,13 @@ class ModulePass;
|
||||
class Function;
|
||||
class BasicBlock;
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// These functions removes symbols from functions and modules. If OnlyDebugInfo
|
||||
// is true, only debugging information is removed from the module.
|
||||
//
|
||||
ModulePass *createStripSymbolsPass(bool OnlyDebugInfo = false);
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
/// createLowerSetJmpPass - This function lowers the setjmp/longjmp intrinsics
|
||||
/// to invoke/unwind instructions. This should really be part of the C/C++
|
||||
|
@ -276,14 +276,6 @@ FunctionPass *createLowerGCPass();
|
||||
// into regular LLVM instructions.
|
||||
FunctionPass* createLowerConstantExpressionsPass();
|
||||
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// These functions removes symbols from functions and modules.
|
||||
//
|
||||
FunctionPass *createSymbolStrippingPass();
|
||||
FunctionPass *createFullSymbolStrippingPass();
|
||||
|
||||
} // End llvm namespace
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user