diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-25 07:26:17 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-25 07:26:17 +0000 |
commit | d960d3ae79fd169a90f16e0f218cff7d9d9604e8 (patch) | |
tree | 2e5d60545ea7c3df638bbaa456656f97c44f9dbf | |
parent | 6c23b1f6febe4ef70ef3b5e95dee4e8e3ae401fb (diff) |
Remove support for i386 tiger tools for aligned common symbols.
Previously we would just silently miscompile code that used aligned
common's, now at least you'll get a build error. tiger-ppc already
triggered the build error because it didn't have a version of this
logic.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94412 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86MCAsmInfo.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Target/X86/X86MCAsmInfo.cpp b/lib/Target/X86/X86MCAsmInfo.cpp index 1738d49584..c0cab86979 100644 --- a/lib/Target/X86/X86MCAsmInfo.cpp +++ b/lib/Target/X86/X86MCAsmInfo.cpp @@ -55,9 +55,6 @@ X86MCAsmInfoDarwin::X86MCAsmInfoDarwin(const Triple &Triple) { if (!is64Bit) Data64bitsDirective = 0; // we can't emit a 64-bit unit - // Leopard and above support aligned common symbols. - COMMDirectiveTakesAlignment = Triple.getDarwinMajorNumber() >= 9; - CommentString = "##"; PCSymbol = "."; |