[PATCH] D80829: [OpenMP][SYCL] Do not crash on attempt to diagnose unsupported type use
Mariya Podchishchaeva via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri May 29 12:00:42 PDT 2020
Fznamznon created this revision.
Herald added subscribers: cfe-commits, sstefan1, Anastasia, ebevhan, guansong, yaxunl.
Herald added a reviewer: jdoerfert.
Herald added a project: clang.
Fznamznon added reviewers: ABataev, bader.
Do not ask size of type if it is dependent. ASTContext doesn't seem expecting
this.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D80829
Files:
clang/lib/Sema/Sema.cpp
clang/test/OpenMP/nvptx_unsupported_type_messages.cpp
Index: clang/test/OpenMP/nvptx_unsupported_type_messages.cpp
===================================================================
--- clang/test/OpenMP/nvptx_unsupported_type_messages.cpp
+++ clang/test/OpenMP/nvptx_unsupported_type_messages.cpp
@@ -120,3 +120,14 @@
long double qa, qb;
decltype(qa + qb) qc;
double qd[sizeof(-(-(qc * 2)))];
+
+struct A { };
+
+template <bool>
+struct A_type { typedef A type; };
+
+template <class Sp, class Tp>
+struct B {
+ enum { value = bool(Sp::value) || bool(Tp::value) };
+ typedef typename A_type<value>::type type;
+};
Index: clang/lib/Sema/Sema.cpp
===================================================================
--- clang/lib/Sema/Sema.cpp
+++ clang/lib/Sema/Sema.cpp
@@ -1725,6 +1725,9 @@
}
auto CheckType = [&](QualType Ty) {
+ if (Ty->isDependentType())
+ return;
+
if ((Ty->isFloat16Type() && !Context.getTargetInfo().hasFloat16Type()) ||
((Ty->isFloat128Type() ||
(Ty->isRealFloatingType() && Context.getTypeSize(Ty) == 128)) &&
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D80829.267318.patch
Type: text/x-patch
Size: 1029 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200529/10b70f21/attachment.bin>
More information about the cfe-commits
mailing list