diff options
| author | Daniel Sanders <daniel.sanders@imgtec.com> | 2015-06-16 13:15:50 +0000 |
|---|---|---|
| committer | Daniel Sanders <daniel.sanders@imgtec.com> | 2015-06-16 13:15:50 +0000 |
| commit | 335487ad873797c2a44747d1c9442baa67fa8d74 (patch) | |
| tree | d21985f15f444d676384f36b175fc7ec719dd86e /llvm/tools/lli/OrcLazyJIT.cpp | |
| parent | 5220476a43ba3d1847e2567db9b41f403a14e040 (diff) | |
| download | bcm5719-llvm-335487ad873797c2a44747d1c9442baa67fa8d74.tar.gz bcm5719-llvm-335487ad873797c2a44747d1c9442baa67fa8d74.zip | |
Replace string GNU Triples with llvm::Triple in TargetMachine::getTargetTriple(). NFC.
Summary:
This continues the patch series to eliminate StringRef forms of GNU triples
from the internals of LLVM that began in r239036.
Reviewers: rengolin
Reviewed By: rengolin
Subscribers: llvm-commits, rengolin
Differential Revision: http://reviews.llvm.org/D10381
llvm-svn: 239815
Diffstat (limited to 'llvm/tools/lli/OrcLazyJIT.cpp')
| -rw-r--r-- | llvm/tools/lli/OrcLazyJIT.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/lli/OrcLazyJIT.cpp b/llvm/tools/lli/OrcLazyJIT.cpp index afccfa6b032..ae276e6cda8 100644 --- a/llvm/tools/lli/OrcLazyJIT.cpp +++ b/llvm/tools/lli/OrcLazyJIT.cpp @@ -131,7 +131,7 @@ int llvm::runOrcLazyJIT(std::unique_ptr<Module> M, int ArgC, char* ArgV[]) { // manager for this target. Bail out. if (!CallbackMgrBuilder) { errs() << "No callback manager available for target '" - << TM->getTargetTriple() << "'.\n"; + << TM->getTargetTriple().str() << "'.\n"; return 1; } |

