summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-exegesis/lib/LlvmState.cpp
diff options
context:
space:
mode:
authorGuillaume Chatelet <gchatelet@google.com>2018-06-13 14:07:36 +0000
committerGuillaume Chatelet <gchatelet@google.com>2018-06-13 14:07:36 +0000
commitb391f2430378cd4d1bba41d04e6f60d890748f20 (patch)
treeab87487d53ac38f33a4fc8d50404124285328bdd /llvm/tools/llvm-exegesis/lib/LlvmState.cpp
parente368de364e1fa1dcd0f67a5fbb5ae5cbb0adae65 (diff)
downloadbcm5719-llvm-b391f2430378cd4d1bba41d04e6f60d890748f20.tar.gz
bcm5719-llvm-b391f2430378cd4d1bba41d04e6f60d890748f20.zip
[llvm-exegesis] Fix buildbot - power was using native target for X86.
Reviewers: courbet Reviewed By: courbet Subscribers: tschuett, llvm-commits Differential Revision: https://reviews.llvm.org/D48125 llvm-svn: 334601
Diffstat (limited to 'llvm/tools/llvm-exegesis/lib/LlvmState.cpp')
-rw-r--r--llvm/tools/llvm-exegesis/lib/LlvmState.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/llvm/tools/llvm-exegesis/lib/LlvmState.cpp b/llvm/tools/llvm-exegesis/lib/LlvmState.cpp
index cb534f50998..e28685339e3 100644
--- a/llvm/tools/llvm-exegesis/lib/LlvmState.cpp
+++ b/llvm/tools/llvm-exegesis/lib/LlvmState.cpp
@@ -20,9 +20,8 @@
namespace exegesis {
-LLVMState::LLVMState()
- : TheTriple(llvm::sys::getProcessTriple()),
- CpuName(llvm::sys::getHostCPUName().str()) {
+LLVMState::LLVMState(const std::string &Triple, const std::string &CpuName)
+ : TheTriple(Triple), CpuName(CpuName) {
std::string Error;
TheTarget = llvm::TargetRegistry::lookupTarget(TheTriple, Error);
assert(TheTarget && "unknown target for host");
@@ -33,6 +32,10 @@ LLVMState::LLVMState()
AsmInfo.reset(TheTarget->createMCAsmInfo(*RegInfo, TheTriple));
}
+LLVMState::LLVMState()
+ : LLVMState(llvm::sys::getProcessTriple(),
+ llvm::sys::getHostCPUName().str()) {}
+
std::unique_ptr<llvm::LLVMTargetMachine>
LLVMState::createTargetMachine() const {
const llvm::TargetOptions Options;
OpenPOWER on IntegriCloud