diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-07-26 02:12:58 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-26 02:12:58 +0000 |
commit | a5881e3060aee9f82aef3747a97650e5eafe893a (patch) | |
tree | 91b295074626e17cb0342c1de0959a5a6c2349b0 /tools/llc | |
parent | 13b9251eb1343eb4c93944f5d6838404c27a7273 (diff) | |
download | external_llvm-a5881e3060aee9f82aef3747a97650e5eafe893a.zip external_llvm-a5881e3060aee9f82aef3747a97650e5eafe893a.tar.gz external_llvm-a5881e3060aee9f82aef3747a97650e5eafe893a.tar.bz2 |
Add TargetRegistry::lookupTarget.
- This is a simplified mechanism which just looks up a target based on the
target triple, with a few additional flags.
- Remove getClosestStaticTargetForModule, the moral equivalent is now:
lookupTarget(Mod->getTargetTriple, true, false, ...);
- This no longer does the fuzzy matching with target data (based on endianness
and pointer width) that getClosestStaticTargetForModule was doing, but this
was deemed unnecessary.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77111 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llc')
-rw-r--r-- | tools/llc/llc.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp index 6d66268..9f7f0a4 100644 --- a/tools/llc/llc.cpp +++ b/tools/llc/llc.cpp @@ -252,7 +252,10 @@ int main(int argc, char **argv) { } } else { std::string Err; - TheTarget = TargetRegistry::getClosestStaticTargetForModule(mod, Err); + TheTarget = TargetRegistry::lookupTarget(mod.getTargetTriple(), + /*FallbackToHost=*/true, + /*RequireJIT=*/false, + Err); if (TheTarget == 0) { errs() << argv[0] << ": error auto-selecting target for module '" << Err << "'. Please use the -march option to explicitly " |