summaryrefslogtreecommitdiffstats
path: root/clang/lib/AST/Expr.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2008-10-24 08:07:57 +0000
committerDaniel Dunbar <daniel@zuster.org>2008-10-24 08:07:57 +0000
commitd7be95d60a098e4643cf049309ce1f51806cd781 (patch)
tree7455a5125f74d6054a30a391af9a26f1e0eb60e8 /clang/lib/AST/Expr.cpp
parentb2d68310cb81c31e721e8dbb74d9713430147edb (diff)
downloadbcm5719-llvm-d7be95d60a098e4643cf049309ce1f51806cd781.tar.gz
bcm5719-llvm-d7be95d60a098e4643cf049309ce1f51806cd781.zip
PR2919: __builtin_types_compatible_p strips CRV qualifiers.
llvm-svn: 58079
Diffstat (limited to 'clang/lib/AST/Expr.cpp')
-rw-r--r--clang/lib/AST/Expr.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/clang/lib/AST/Expr.cpp b/clang/lib/AST/Expr.cpp
index 6e62d09474c..c20ca25f283 100644
--- a/clang/lib/AST/Expr.cpp
+++ b/clang/lib/AST/Expr.cpp
@@ -717,7 +717,13 @@ bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
case TypesCompatibleExprClass: {
const TypesCompatibleExpr *TCE = cast<TypesCompatibleExpr>(this);
Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
- Result = Ctx.typesAreCompatible(TCE->getArgType1(), TCE->getArgType2());
+ // Per gcc docs "this built-in function ignores top level
+ // qualifiers". We need to use the canonical version to properly
+ // be able to strip CRV qualifiers from the type.
+ QualType T0 = Ctx.getCanonicalType(TCE->getArgType1());
+ QualType T1 = Ctx.getCanonicalType(TCE->getArgType2());
+ Result = Ctx.typesAreCompatible(T0.getUnqualifiedType(),
+ T1.getUnqualifiedType());
break;
}
case CallExprClass: {
OpenPOWER on IntegriCloud