diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-01-25 02:27:39 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-01-25 02:27:39 +0000 |
commit | f166ed7324d3708a74231f9f86fd148f811038a7 (patch) | |
tree | 368eae0a419d77bd498b34dec5f3b9eb575bf843 /lib/Target/ARM/ARMMCAsmInfo.cpp | |
parent | 34b6ea6cef6e45e084dbbeffec8b2221e8cc812f (diff) |
Fix PR6134.
We are not emitting alignments on Darwin for "bar". Not sure what is the
correct way to do it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94400 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMMCAsmInfo.cpp')
-rw-r--r-- | lib/Target/ARM/ARMMCAsmInfo.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Target/ARM/ARMMCAsmInfo.cpp b/lib/Target/ARM/ARMMCAsmInfo.cpp index 3dd87c0723..6c7f752cfd 100644 --- a/lib/Target/ARM/ARMMCAsmInfo.cpp +++ b/lib/Target/ARM/ARMMCAsmInfo.cpp @@ -53,11 +53,9 @@ ARMMCAsmInfoDarwin::ARMMCAsmInfoDarwin() { } ARMELFMCAsmInfo::ARMELFMCAsmInfo() { - AlignmentIsInBytes = false; Data64bitsDirective = 0; CommentString = "@"; - COMMDirectiveTakesAlignment = false; - + NeedsSet = false; HasLEB128 = true; AbsoluteDebugSectionOffsets = true; |