forked from OSchip/llvm-project
Fix r332344: only the native target is linked.
llvm-svn: 332345
This commit is contained in:
parent
37f0ca0328
commit
7b19ffcc01
|
@ -135,7 +135,10 @@ void analysisMain() {
|
||||||
// FIXME: Check that all points have the same triple/cpu.
|
// FIXME: Check that all points have the same triple/cpu.
|
||||||
// FIXME: Merge points from several runs (latency and uops).
|
// FIXME: Merge points from several runs (latency and uops).
|
||||||
|
|
||||||
llvm::InitializeAllTargets();
|
//llvm::InitializeAllTargets();
|
||||||
|
llvm::InitializeNativeTarget();
|
||||||
|
llvm::InitializeNativeTargetAsmPrinter();
|
||||||
|
|
||||||
std::string Error;
|
std::string Error;
|
||||||
const auto *TheTarget =
|
const auto *TheTarget =
|
||||||
llvm::TargetRegistry::lookupTarget(Points[0].LLVMTriple, Error);
|
llvm::TargetRegistry::lookupTarget(Points[0].LLVMTriple, Error);
|
||||||
|
|
Loading…
Reference in New Issue