From 237b1c12be747104996bfe52ee8c01d8b32925a4 Mon Sep 17 00:00:00 2001 From: Dale Johannesen Date: Wed, 6 Jan 2010 02:21:00 +0000 Subject: [PATCH] Reenable debug info on PPC. Works well enough to bootstrap. llvm-svn: 92818 --- llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp b/llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp index c87879b2a332..ee6deb5c5090 100644 --- a/llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp +++ b/llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp @@ -22,6 +22,7 @@ PPCMCAsmInfoDarwin::PPCMCAsmInfoDarwin(bool is64Bit) { if (!is64Bit) Data64bitsDirective = 0; // We can't emit a 64-bit unit in PPC32 mode. AssemblerDialect = 1; // New-Style mnemonics. + SupportsDebugInformation= true; // Debug information. } PPCLinuxMCAsmInfo::PPCLinuxMCAsmInfo(bool is64Bit) {