mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-04 09:45:00 +00:00
s/lto_codegen_whole_program_optimization/lto_codegen_set_whole_program_optimization/
llvm-svn: 154312
This commit is contained in:
parent
4499fb1d50
commit
756a33b1e6
@ -254,7 +254,7 @@ lto_codegen_set_assembler_args(lto_code_gen_t cg, const char **args,
|
||||
* Enables the internalize pass during LTO optimizations.
|
||||
*/
|
||||
extern void
|
||||
lto_codegen_whole_program_optimization(lto_code_gen_t cg);
|
||||
lto_codegen_set_whole_program_optimization(lto_code_gen_t cg);
|
||||
|
||||
/**
|
||||
* Adds to a list of all global symbols that must exist in the final
|
||||
|
@ -183,9 +183,9 @@ void lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg,
|
||||
cg->addMustPreserveSymbol(symbol);
|
||||
}
|
||||
|
||||
/// lto_codegen_whole_program_optimization - Enable the internalize pass during
|
||||
/// LTO optimizations.
|
||||
void lto_codegen_whole_program_optimization(lto_code_gen_t cg) {
|
||||
/// lto_codegen_set_whole_program_optimization - Enable the internalize pass
|
||||
/// during LTO optimizations.
|
||||
void lto_codegen_set_whole_program_optimization(lto_code_gen_t cg) {
|
||||
cg->enableInternalizePass();
|
||||
}
|
||||
|
||||
|
@ -27,7 +27,7 @@ lto_codegen_set_assembler_args
|
||||
lto_codegen_set_assembler_path
|
||||
lto_codegen_set_cpu
|
||||
lto_codegen_compile_to_file
|
||||
lto_codegen_whole_program_optimization
|
||||
lto_codegen_set_whole_program_optimization
|
||||
LLVMCreateDisasm
|
||||
LLVMDisasmDispose
|
||||
LLVMDisasmInstruction
|
||||
|
Loading…
Reference in New Issue
Block a user