diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2011-10-31 01:06:02 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2011-10-31 01:06:02 +0000 |
commit | 4e478fed1b8021150b1f2cec4e670068b6abd135 (patch) | |
tree | d49c35643077b1dfe49f8776a38ec63f24a20a9e /lib/Target/TargetMachine.cpp | |
parent | e7b05504faa86a5c0b80a62ddb60cbb0cf163d5d (diff) |
Switch new .file directive emission off by default, change llc's flag for it to
-enable-dwarf-directory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143326 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/TargetMachine.cpp')
-rw-r--r-- | lib/Target/TargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/TargetMachine.cpp b/lib/Target/TargetMachine.cpp index 3f58e84390..daac9243dd 100644 --- a/lib/Target/TargetMachine.cpp +++ b/lib/Target/TargetMachine.cpp @@ -198,7 +198,7 @@ TargetMachine::TargetMachine(const Target &T, MCSaveTempLabels(false), MCUseLoc(true), MCUseCFI(true), - MCUseDwarfDirectory(true) { + MCUseDwarfDirectory(false) { // Typically it will be subtargets that will adjust FloatABIType from Default // to Soft or Hard. if (UseSoftFloat) |