summaryrefslogtreecommitdiffstats
path: root/lib/Target/PowerPC/PPCMCAsmInfo.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-24 20:54:45 +0000
committerChris Lattner <sabre@nondot.org>2010-01-24 20:54:45 +0000
commit75f9b4b63a7c271b29897db35f3453fb89a1cac6 (patch)
treee1b61606248666a5be4f9a7016b8aa8b41c6bd79 /lib/Target/PowerPC/PPCMCAsmInfo.cpp
parent843cf187f7aa8f321b735c7b3ba8427b7788f5ab (diff)
downloadexternal_llvm-75f9b4b63a7c271b29897db35f3453fb89a1cac6.zip
external_llvm-75f9b4b63a7c271b29897db35f3453fb89a1cac6.tar.gz
external_llvm-75f9b4b63a7c271b29897db35f3453fb89a1cac6.tar.bz2
linux/ppc does use alignment in bytes, not pow-2. This fixes PR6129.
It looks like linux/arm and linux/mips have the same setting, which are probably wrong. Someone who cares about ARM and MIPS should investigate with the testcase in PR6129. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94381 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCMCAsmInfo.cpp')
-rw-r--r--lib/Target/PowerPC/PPCMCAsmInfo.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCMCAsmInfo.cpp b/lib/Target/PowerPC/PPCMCAsmInfo.cpp
index d2ff3b7..c61627e 100644
--- a/lib/Target/PowerPC/PPCMCAsmInfo.cpp
+++ b/lib/Target/PowerPC/PPCMCAsmInfo.cpp
@@ -51,7 +51,6 @@ PPCLinuxMCAsmInfo::PPCLinuxMCAsmInfo(bool is64Bit) {
ZeroDirective = "\t.space\t";
SetDirective = "\t.set";
Data64bitsDirective = is64Bit ? "\t.quad\t" : 0;
- AlignmentIsInBytes = false;
HasLCOMMDirective = true;
AssemblerDialect = 0; // Old-Style mnemonics.
}