blob: f9b7c60553464afe7c07757ccf4a1e977819fa33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//===-- SymbolStripping.h - Functions that Strip Symbol Tables ---*- C++ -*--=//
//
// This family of functions removes symbols from the symbol tables of methods
// and classes.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TRANSFORMS_SYMBOL_STRIPPING_H
#define LLVM_TRANSFORMS_SYMBOL_STRIPPING_H
class Pass;
Pass *createSymbolStrippingPass();
Pass *createFullSymbolStrippingPass();
#endif
|