diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-24 20:17:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-24 20:17:12 +0000 |
commit | 31e21e05623ce9d11b1a893fecb87ad349df6c7d (patch) | |
tree | 1633aec9919349830dc725d8963813e1f0966e61 /lib | |
parent | 694b1e4425d930c471350b10cf22a93124a698bd (diff) |
Fix PR3386 by handling GCC's rules for alignof, which are substantially
different than those for sizeof. Reject alignof(bitfield) like gcc does.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62928 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Sema/Sema.h | 1 | ||||
-rw-r--r-- | lib/Sema/SemaExpr.cpp | 29 |
2 files changed, 29 insertions, 1 deletions
diff --git a/lib/Sema/Sema.h b/lib/Sema/Sema.h index 40cfe8f193..a993ebe2cb 100644 --- a/lib/Sema/Sema.h +++ b/lib/Sema/Sema.h @@ -1003,6 +1003,7 @@ public: ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType, void *TyOrEx, const SourceRange &ArgRange); + bool CheckAlignOfExpr(Expr *E, SourceLocation OpLoc, const SourceRange &R); bool CheckSizeOfAlignOfOperand(QualType type, SourceLocation OpLoc, const SourceRange &R, bool isSizeof); diff --git a/lib/Sema/SemaExpr.cpp b/lib/Sema/SemaExpr.cpp index fa4c9d620a..56ad4b5f26 100644 --- a/lib/Sema/SemaExpr.cpp +++ b/lib/Sema/SemaExpr.cpp @@ -1035,6 +1035,27 @@ bool Sema::CheckSizeOfAlignOfOperand(QualType exprType, ExprRange); } +bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc, + const SourceRange &ExprRange) { + E = E->IgnoreParens(); + + // alignof decl is always ok. + if (isa<DeclRefExpr>(E)) + return false; + + if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) { + if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl())) { + if (FD->isBitField()) { + Diag(OpLoc, diag::err_alignof_bitfield) << ExprRange; + return true; + } + // Other fields are ok. + return false; + } + } + return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false); +} + /// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and /// the same for @c alignof and @c __alignof /// Note that the ArgRange is invalid if isType is false. @@ -1060,7 +1081,13 @@ Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType, ArgTy = ArgEx->getType(); // Verify that the operand is valid. - if (CheckSizeOfAlignOfOperand(ArgTy, OpLoc, Range, isSizeof)) { + bool isInvalid; + if (isSizeof) + isInvalid = CheckSizeOfAlignOfOperand(ArgTy, OpLoc, Range, true); + else + isInvalid = CheckAlignOfExpr(ArgEx, OpLoc, Range); + + if (isInvalid) { DeleteExpr(ArgEx); return ExprError(); } |