diff options
author | Sebastian Pop <spop@codeaurora.org> | 2012-01-13 20:37:02 +0000 |
---|---|---|
committer | Sebastian Pop <spop@codeaurora.org> | 2012-01-13 20:37:02 +0000 |
commit | 9a8d528ddf1f88fe3537e4ae5865b74a96c36ad9 (patch) | |
tree | e6bf3e6b9ca89c7b7d42c7398a0d2633e5fcfb49 /clang/lib/Driver/Driver.cpp | |
parent | 9d66d9e4b22a491d8692fbe3a0d33ac098c31865 (diff) | |
download | bcm5719-llvm-9a8d528ddf1f88fe3537e4ae5865b74a96c36ad9.tar.gz bcm5719-llvm-9a8d528ddf1f88fe3537e4ae5865b74a96c36ad9.zip |
rename -ccc-host-triple into -target
llvm-svn: 148138
Diffstat (limited to 'clang/lib/Driver/Driver.cpp')
-rw-r--r-- | clang/lib/Driver/Driver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Driver/Driver.cpp b/clang/lib/Driver/Driver.cpp index ce4a89e724d..19ed16c9d5f 100644 --- a/clang/lib/Driver/Driver.cpp +++ b/clang/lib/Driver/Driver.cpp @@ -305,7 +305,7 @@ Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) { } // FIXME: We shouldn't overwrite the default host triple here, but we have // nowhere else to put this currently. - if (const Arg *A = Args->getLastArg(options::OPT_ccc_host_triple)) + if (const Arg *A = Args->getLastArg(options::OPT_target)) DefaultTargetTriple = A->getValue(*Args); if (const Arg *A = Args->getLastArg(options::OPT_ccc_install_dir)) Dir = InstalledDir = A->getValue(*Args); |