diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2012-03-21 20:56:29 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2012-03-21 20:56:29 +0000 |
commit | 54faba4f7f3f0e8f1376da1c459312596ad5486d (patch) | |
tree | 174069c0ad28cf09478b3868bd8b4a0721973590 /lib/Sema/SemaStmt.cpp | |
parent | 9354f6aaa70e1543d122644fee0c3f834324d2fc (diff) |
For enums with no tag name, display its location in
the diagnostic instead of displaying ''.
// rdar://11082110
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@153219 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaStmt.cpp')
-rw-r--r-- | lib/Sema/SemaStmt.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Sema/SemaStmt.cpp b/lib/Sema/SemaStmt.cpp index 1ddedcfe68..6db66a5eff 100644 --- a/lib/Sema/SemaStmt.cpp +++ b/lib/Sema/SemaStmt.cpp @@ -881,7 +881,7 @@ Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, Stmt *Switch, EI++; if (EI == EIend || EI->first > CI->first) Diag(CI->second->getLHS()->getExprLoc(), diag::warn_not_in_enum) - << ED->getDeclName(); + << CondTypeBeforePromotion; } // See which of case ranges aren't in enum EI = EnumVals.begin(); @@ -892,7 +892,7 @@ Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, Stmt *Switch, if (EI == EIend || EI->first != RI->first) { Diag(RI->second->getLHS()->getExprLoc(), diag::warn_not_in_enum) - << ED->getDeclName(); + << CondTypeBeforePromotion; } llvm::APSInt Hi = @@ -902,7 +902,7 @@ Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, Stmt *Switch, EI++; if (EI == EIend || EI->first != Hi) Diag(RI->second->getRHS()->getExprLoc(), diag::warn_not_in_enum) - << ED->getDeclName(); + << CondTypeBeforePromotion; } // Check which enum vals aren't in switch |