diff options
author | Devang Patel <dpatel@apple.com> | 2009-11-24 21:38:54 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-11-24 21:38:54 +0000 |
commit | eac79170d2c66f1d6a433b0cac2696926eeff783 (patch) | |
tree | ad32a39de53cf6e7c100f8f9f331395d9317ef45 /lib/Target/PowerPC/PPCMCAsmInfo.cpp | |
parent | e9a059714e3dccd6c870f19c3839f3352ac823ed (diff) | |
download | external_llvm-eac79170d2c66f1d6a433b0cac2696926eeff783.zip external_llvm-eac79170d2c66f1d6a433b0cac2696926eeff783.tar.gz external_llvm-eac79170d2c66f1d6a433b0cac2696926eeff783.tar.bz2 |
Enable debug info for ppc-darwin.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89803 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCMCAsmInfo.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCMCAsmInfo.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Target/PowerPC/PPCMCAsmInfo.cpp b/lib/Target/PowerPC/PPCMCAsmInfo.cpp index c87879b..290b615 100644 --- a/lib/Target/PowerPC/PPCMCAsmInfo.cpp +++ b/lib/Target/PowerPC/PPCMCAsmInfo.cpp @@ -22,6 +22,9 @@ PPCMCAsmInfoDarwin::PPCMCAsmInfoDarwin(bool is64Bit) { if (!is64Bit) Data64bitsDirective = 0; // We can't emit a 64-bit unit in PPC32 mode. AssemblerDialect = 1; // New-Style mnemonics. + + // Debug Information + SupportsDebugInformation = true; } PPCLinuxMCAsmInfo::PPCLinuxMCAsmInfo(bool is64Bit) { |