diff options
author | Bob Haarman <llvm@inglorion.net> | 2019-07-15 20:51:44 +0000 |
---|---|---|
committer | Bob Haarman <llvm@inglorion.net> | 2019-07-15 20:51:44 +0000 |
commit | 794346460afa212690d0f006023a0e770884f0bb (patch) | |
tree | 70c62d65c3eb1506df05ef1356f6f4fdf59a3029 /clang/lib/Driver/Driver.cpp | |
parent | 39d888c1e42a62e02adfb5fe8da54cafe7e62b0b (diff) | |
download | bcm5719-llvm-794346460afa212690d0f006023a0e770884f0bb.tar.gz bcm5719-llvm-794346460afa212690d0f006023a0e770884f0bb.zip |
[clang] allow -fthinlto-index= without -x ir
Summary:
Previously, passing -fthinlto-index= to clang required that bitcode
files be explicitly marked by -x ir. This change makes us detect files
with object file extensions as bitcode files when -fthinlto-index= is
present, so that explicitly marking them is no longer necessary.
Explicitly specifying -x ir is still accepted and continues to be part
of the test case to ensure we continue to support it.
Reviewers: tejohnson, rnk, pcc
Subscribers: mehdi_amini, steven_wu, dexonsmith, arphaman, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D64610
llvm-svn: 366127
Diffstat (limited to 'clang/lib/Driver/Driver.cpp')
-rw-r--r-- | clang/lib/Driver/Driver.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/lib/Driver/Driver.cpp b/clang/lib/Driver/Driver.cpp index 22f26d90bd7..087335562d0 100644 --- a/clang/lib/Driver/Driver.cpp +++ b/clang/lib/Driver/Driver.cpp @@ -2119,6 +2119,12 @@ void Driver::BuildInputs(const ToolChain &TC, DerivedArgList &Args, Diag(clang::diag::warn_drv_treating_input_as_cxx) << getTypeName(OldTy) << getTypeName(Ty); } + + // If running with -fthinlto-index=, extensions that normally identify + // native object files actually identify LLVM bitcode files. + if (Args.hasArgNoClaim(options::OPT_fthinlto_index_EQ) && + Ty == types::TY_Object) + Ty = types::TY_LLVM_BC; } // -ObjC and -ObjC++ override the default language, but only for "source |