diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-05-27 01:12:46 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-05-27 01:12:46 +0000 |
commit | 8a2c92cab213bd7e28ff669577e815cd70bafbe3 (patch) | |
tree | 09863dd0251ee09b3363821815dd57f6caab7c08 /lib/Sema/SemaDecl.cpp | |
parent | 613fd67e575ff1c038535b18dafebca070f3ed91 (diff) |
AST: Rename PragmaPackAttr to MaxFieldAlignmentAttr, which is more accurate.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@104795 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaDecl.cpp')
-rw-r--r-- | lib/Sema/SemaDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp index 6fe91905dc..9d87694a61 100644 --- a/lib/Sema/SemaDecl.cpp +++ b/lib/Sema/SemaDecl.cpp @@ -5410,7 +5410,7 @@ CreateNewDecl: // the #pragma tokens are effectively skipped over during the // parsing of the struct). if (unsigned Alignment = getPragmaPackAlignment()) - New->addAttr(::new (Context) PragmaPackAttr(Alignment * 8)); + New->addAttr(::new (Context) MaxFieldAlignmentAttr(Alignment * 8)); } // If this is a specialization of a member class (of a class template), |