diff options
| author | James Molloy <james.molloy@arm.com> | 2012-03-12 09:14:10 +0000 |
|---|---|---|
| committer | James Molloy <james.molloy@arm.com> | 2012-03-12 09:14:10 +0000 |
| commit | a7139221f881decc43d1f5960a3e05c2b882034a (patch) | |
| tree | eb9c551d8973b0ee61e44cc37510c4a91eaca0c2 /clang/lib | |
| parent | bfdb108fc5e627e740d096ee96ea6e1b10891e66 (diff) | |
| download | bcm5719-llvm-a7139221f881decc43d1f5960a3e05c2b882034a.tar.gz bcm5719-llvm-a7139221f881decc43d1f5960a3e05c2b882034a.zip | |
Use ZeroLengthBitfieldAlignment for AAPCS, as well as APCS-GNU.
llvm-svn: 152552
Diffstat (limited to 'clang/lib')
| -rw-r--r-- | clang/lib/Basic/Targets.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/lib/Basic/Targets.cpp b/clang/lib/Basic/Targets.cpp index 19fa423dc27..8620b9860c4 100644 --- a/clang/lib/Basic/Targets.cpp +++ b/clang/lib/Basic/Targets.cpp @@ -2653,6 +2653,12 @@ public: // ARM has atomics up to 8 bytes // FIXME: Set MaxAtomicInlineWidth if we have the feature v6e MaxAtomicPromoteWidth = 64; + + // Do force alignment of members that follow zero length bitfields. If + // the alignment of the zero-length bitfield is greater than the member + // that follows it, `bar', `bar' will be aligned as the type of the + // zero length bitfield. + UseZeroLengthBitfieldAlignment = true; } virtual const char *getABI() const { return ABI.c_str(); } virtual bool setABI(const std::string &Name) { @@ -2673,12 +2679,6 @@ public: // structures. This corresponds to PCC_BITFIELD_TYPE_MATTERS in gcc. UseBitFieldTypeAlignment = false; - /// Do force alignment of members that follow zero length bitfields. If - /// the alignment of the zero-length bitfield is greater than the member - /// that follows it, `bar', `bar' will be aligned as the type of the - /// zero length bitfield. - UseZeroLengthBitfieldAlignment = true; - /// gcc forces the alignment to 4 bytes, regardless of the type of the /// zero length bitfield. This corresponds to EMPTY_FIELD_BOUNDARY in /// gcc. |

