diff options
author | George Rimar <grimar@accesssoftek.com> | 2016-05-27 12:15:25 +0000 |
---|---|---|
committer | George Rimar <grimar@accesssoftek.com> | 2016-05-27 12:15:25 +0000 |
commit | 0976dc1b2ac0955e7e5f27f32afb8c2368e1005f (patch) | |
tree | 92a2e15e6434b7526232a4ab529bbbf9707b39db /clang/tools/driver/cc1as_main.cpp | |
parent | 4672af6fecd1274ad5ecb0c90244c0998c116310 (diff) | |
download | bcm5719-llvm-0976dc1b2ac0955e7e5f27f32afb8c2368e1005f.tar.gz bcm5719-llvm-0976dc1b2ac0955e7e5f27f32afb8c2368e1005f.zip |
Update for following LLVM commit.
It will be:
Recommit 270977 - [llvm-mc] - Teach llvm-mc to generate zlib styled compression sections.
llvm-svn: 270985
Diffstat (limited to 'clang/tools/driver/cc1as_main.cpp')
-rw-r--r-- | clang/tools/driver/cc1as_main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/tools/driver/cc1as_main.cpp b/clang/tools/driver/cc1as_main.cpp index 3ed1acd73b5..60ef7c96640 100644 --- a/clang/tools/driver/cc1as_main.cpp +++ b/clang/tools/driver/cc1as_main.cpp @@ -313,7 +313,7 @@ static bool ExecuteAssembler(AssemblerInvocation &Opts, // Ensure MCAsmInfo initialization occurs before any use, otherwise sections // may be created with a combination of default and explicit settings. if (Opts.CompressDebugSections) - MAI->setCompressDebugSections(true); + MAI->setCompressDebugSections(DebugCompressionType::DCT_ZlibGnu); bool IsBinary = Opts.OutputType == AssemblerInvocation::FT_Obj; std::unique_ptr<raw_fd_ostream> FDOS = getOutputStream(Opts, Diags, IsBinary); |