mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 08:11:52 +00:00
Use the c++ APIs.
No functionality change. llvm-svn: 211294
This commit is contained in:
parent
0ba54d3fbf
commit
effced1056
@ -18,6 +18,7 @@
|
|||||||
#include "llvm/CodeGen/CommandFlags.h"
|
#include "llvm/CodeGen/CommandFlags.h"
|
||||||
#include "llvm/LTO/LTOCodeGenerator.h"
|
#include "llvm/LTO/LTOCodeGenerator.h"
|
||||||
#include "llvm/LTO/LTOModule.h"
|
#include "llvm/LTO/LTOModule.h"
|
||||||
|
#include "llvm/Support/TargetSelect.h"
|
||||||
|
|
||||||
// extra command-line flags needed for LTOCodeGenerator
|
// extra command-line flags needed for LTOCodeGenerator
|
||||||
static cl::opt<bool>
|
static cl::opt<bool>
|
||||||
@ -46,12 +47,12 @@ static bool parsedOptions = false;
|
|||||||
// Initialize the configured targets if they have not been initialized.
|
// Initialize the configured targets if they have not been initialized.
|
||||||
static void lto_initialize() {
|
static void lto_initialize() {
|
||||||
if (!initialized) {
|
if (!initialized) {
|
||||||
LLVMInitializeAllTargetInfos();
|
InitializeAllTargetInfos();
|
||||||
LLVMInitializeAllTargets();
|
InitializeAllTargets();
|
||||||
LLVMInitializeAllTargetMCs();
|
InitializeAllTargetMCs();
|
||||||
LLVMInitializeAllAsmParsers();
|
InitializeAllAsmParsers();
|
||||||
LLVMInitializeAllAsmPrinters();
|
InitializeAllAsmPrinters();
|
||||||
LLVMInitializeAllDisassemblers();
|
InitializeAllDisassemblers();
|
||||||
initialized = true;
|
initialized = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user