diff options
author | David Blaikie <dblaikie@gmail.com> | 2014-03-27 20:45:41 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2014-03-27 20:45:41 +0000 |
commit | 70bd1fd22f801fab4b01d7e0dd22d6fb927c8fcf (patch) | |
tree | 432a15ab82dd6b581057ad7b59ecb9b62018b761 /llvm/lib/CodeGen/LLVMTargetMachine.cpp | |
parent | 9ab380122ae408aa35c3cf02a1f513459bea7f67 (diff) | |
download | bcm5719-llvm-70bd1fd22f801fab4b01d7e0dd22d6fb927c8fcf.tar.gz bcm5719-llvm-70bd1fd22f801fab4b01d7e0dd22d6fb927c8fcf.zip |
DebugInfo: TargetOptions/MCAsmInfo support for compressed debug info sections
llvm-svn: 204957
Diffstat (limited to 'llvm/lib/CodeGen/LLVMTargetMachine.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LLVMTargetMachine.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/LLVMTargetMachine.cpp b/llvm/lib/CodeGen/LLVMTargetMachine.cpp index 77f8377d9be..9c2718be7f2 100644 --- a/llvm/lib/CodeGen/LLVMTargetMachine.cpp +++ b/llvm/lib/CodeGen/LLVMTargetMachine.cpp @@ -75,6 +75,9 @@ void LLVMTargetMachine::initAsmInfo() { if (Options.DisableIntegratedAS) TmpAsmInfo->setUseIntegratedAssembler(false); + if (Options.CompressDebugSections) + TmpAsmInfo->setCompressDebugSections(true); + AsmInfo = TmpAsmInfo; } |