summaryrefslogtreecommitdiff
path: root/lib/Target/PowerPC/PPCMCAsmInfo.cpp
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2009-11-24 21:38:54 +0000
committerDevang Patel <dpatel@apple.com>2009-11-24 21:38:54 +0000
commiteac79170d2c66f1d6a433b0cac2696926eeff783 (patch)
treead32a39de53cf6e7c100f8f9f331395d9317ef45 /lib/Target/PowerPC/PPCMCAsmInfo.cpp
parente9a059714e3dccd6c870f19c3839f3352ac823ed (diff)
downloadllvm-eac79170d2c66f1d6a433b0cac2696926eeff783.tar.gz
llvm-eac79170d2c66f1d6a433b0cac2696926eeff783.tar.bz2
llvm-eac79170d2c66f1d6a433b0cac2696926eeff783.tar.xz
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.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Target/PowerPC/PPCMCAsmInfo.cpp b/lib/Target/PowerPC/PPCMCAsmInfo.cpp
index c87879b2a3..290b6155a5 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) {