commit | 2f82ca904a2146a0cafa4c19568ec379ac1aa44f | [log] [tgz] |
---|---|---|
author | Rafael Espindola <rafael.espindola@gmail.com> | Sat Feb 06 03:32:21 2010 +0000 |
committer | Rafael Espindola <rafael.espindola@gmail.com> | Sat Feb 06 03:32:21 2010 +0000 |
tree | 3f75ceff1986b9ac5b9e9c29bbc5277882a859f1 | |
parent | f22f9b35d6e6444028ed288bfae526f53740b5c1 [diff] [blame] |
Fix alignment on ppc linux. This fixes the build of crtend.o git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95477 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/PowerPC/PPCMCAsmInfo.cpp b/lib/Target/PowerPC/PPCMCAsmInfo.cpp index b0d04e4..b37aee8 100644 --- a/lib/Target/PowerPC/PPCMCAsmInfo.cpp +++ b/lib/Target/PowerPC/PPCMCAsmInfo.cpp
@@ -26,6 +26,9 @@ } PPCLinuxMCAsmInfo::PPCLinuxMCAsmInfo(bool is64Bit) { + // ".comm align is in bytes but .align is pow-2." + AlignmentIsInBytes = false; + CommentString = "#"; GlobalPrefix = ""; PrivateGlobalPrefix = ".L";