diff options
| author | Anders Carlsson <andersca@mac.com> | 2008-01-18 02:25:57 +0000 |
|---|---|---|
| committer | Anders Carlsson <andersca@mac.com> | 2008-01-18 02:25:57 +0000 |
| commit | 60bfc161a01e470792dd68906231a6bff77c73c0 (patch) | |
| tree | d58a24bd16d4d415a46cc83966dcf536aab6db9b /clang/CodeGen/CGExprAgg.cpp | |
| parent | 159ee39f4d3382165e8374a6879850808509d827 (diff) | |
| download | bcm5719-llvm-60bfc161a01e470792dd68906231a6bff77c73c0.tar.gz bcm5719-llvm-60bfc161a01e470792dd68906231a6bff77c73c0.zip | |
Assert that the type of the cast is equal to the _unqualified_ type of the subexpression. Fixes a problem spotted by Nuno Lopes.
llvm-svn: 46158
Diffstat (limited to 'clang/CodeGen/CGExprAgg.cpp')
| -rw-r--r-- | clang/CodeGen/CGExprAgg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/CodeGen/CGExprAgg.cpp b/clang/CodeGen/CGExprAgg.cpp index 5836262175f..3781407f988 100644 --- a/clang/CodeGen/CGExprAgg.cpp +++ b/clang/CodeGen/CGExprAgg.cpp @@ -142,7 +142,7 @@ void AggExprEmitter::VisitImplicitCastExpr(ImplicitCastExpr *E) QualType STy = E->getSubExpr()->getType().getCanonicalType(); QualType Ty = E->getType().getCanonicalType(); - assert(STy == Ty && "Implicit cast types must be equal"); + assert(STy.getUnqualifiedType() == Ty && "Implicit cast types must be equal"); Visit(E->getSubExpr()); } |

