mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
Indentation.
llvm-svn: 74281
This commit is contained in:
parent
b93625f89e
commit
05451335e6
@ -111,7 +111,7 @@ bool LTOCodeGenerator::setDebugInfo(lto_debug_model debug, std::string& errMsg)
|
||||
|
||||
|
||||
bool LTOCodeGenerator::setCodePICModel(lto_codegen_model model,
|
||||
std::string& errMsg)
|
||||
std::string& errMsg)
|
||||
{
|
||||
switch (model) {
|
||||
case LTO_CODEGEN_PIC_MODEL_STATIC:
|
||||
|
@ -198,7 +198,7 @@ bool lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model debug)
|
||||
//
|
||||
bool lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model model)
|
||||
{
|
||||
return cg->setCodePICModel(model, sLastErrorString);
|
||||
return cg->setCodePICModel(model, sLastErrorString);
|
||||
}
|
||||
|
||||
//
|
||||
@ -206,7 +206,7 @@ bool lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model model)
|
||||
//
|
||||
void lto_codegen_set_gcc_path(lto_code_gen_t cg, const char* path)
|
||||
{
|
||||
cg->setGccPath(path);
|
||||
cg->setGccPath(path);
|
||||
}
|
||||
|
||||
//
|
||||
@ -224,7 +224,7 @@ void lto_codegen_set_assembler_path(lto_code_gen_t cg, const char* path)
|
||||
//
|
||||
void lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg, const char* symbol)
|
||||
{
|
||||
cg->addMustPreserveSymbol(symbol);
|
||||
cg->addMustPreserveSymbol(symbol);
|
||||
}
|
||||
|
||||
|
||||
@ -235,7 +235,7 @@ void lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg, const char* symbol)
|
||||
//
|
||||
bool lto_codegen_write_merged_modules(lto_code_gen_t cg, const char* path)
|
||||
{
|
||||
return cg->writeMergedModules(path, sLastErrorString);
|
||||
return cg->writeMergedModules(path, sLastErrorString);
|
||||
}
|
||||
|
||||
|
||||
@ -250,7 +250,7 @@ bool lto_codegen_write_merged_modules(lto_code_gen_t cg, const char* path)
|
||||
extern const void*
|
||||
lto_codegen_compile(lto_code_gen_t cg, size_t* length)
|
||||
{
|
||||
return cg->compile(length, sLastErrorString);
|
||||
return cg->compile(length, sLastErrorString);
|
||||
}
|
||||
|
||||
|
||||
@ -262,6 +262,3 @@ lto_codegen_debug_options(lto_code_gen_t cg, const char * opt)
|
||||
{
|
||||
cg->setCodeGenDebugOptions(opt);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user