diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2011-10-30 17:30:44 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2011-10-30 17:30:44 +0000 |
commit | 22a7dfea585703d6755db69b83e29a0e6ee10369 (patch) | |
tree | cfb53988caccc1f9a94f66ec59c8da2c0f2f0cb1 /include/clang/Frontend/CodeGenOptions.h | |
parent | 80b32b8c6546a12cf0d4af9c2cd785ec1f123188 (diff) |
Add support for lazily linking bitcode files (using a new
-mlink-bitcode-file flag), and more generally llvm::Modules, before
running optimisations.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@143314 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/CodeGenOptions.h')
-rw-r--r-- | include/clang/Frontend/CodeGenOptions.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/Frontend/CodeGenOptions.h b/include/clang/Frontend/CodeGenOptions.h index 5b698889f6..9962ea8cf9 100644 --- a/include/clang/Frontend/CodeGenOptions.h +++ b/include/clang/Frontend/CodeGenOptions.h @@ -128,6 +128,9 @@ public: /// The float precision limit to use, if non-empty. std::string LimitFloatPrecision; + /// The name of the bitcode file to link before optzns. + std::string LinkBitcodeFile; + /// The kind of inlining to perform. InliningMethod Inlining; |