[PATCH] D151469: [NFC][CLANG] Fix issue with dereference null return value in EvaluateBuiltinClassifyType()
Soumi Manna via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sat May 27 07:08:10 PDT 2023
Manna updated this revision to Diff 526264.
Manna added a comment.
Fix clang-format error
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D151469/new/
https://reviews.llvm.org/D151469
Files:
clang/lib/AST/ExprConstant.cpp
Index: clang/lib/AST/ExprConstant.cpp
===================================================================
--- clang/lib/AST/ExprConstant.cpp
+++ clang/lib/AST/ExprConstant.cpp
@@ -11290,7 +11290,6 @@
assert(!T->isDependentType() && "unexpected dependent type");
QualType CanTy = T.getCanonicalType();
- const BuiltinType *BT = dyn_cast<BuiltinType>(CanTy);
switch (CanTy->getTypeClass()) {
#define TYPE(ID, BASE)
@@ -11303,7 +11302,7 @@
llvm_unreachable("unexpected non-canonical or dependent type");
case Type::Builtin:
- switch (BT->getKind()) {
+ switch (cast<BuiltinType>(CanTy)->getKind()) {
#define BUILTIN_TYPE(ID, SINGLETON_ID)
#define SIGNED_TYPE(ID, SINGLETON_ID) \
case BuiltinType::ID: return GCCTypeClass::Integer;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D151469.526264.patch
Type: text/x-patch
Size: 770 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230527/db78017f/attachment.bin>
More information about the cfe-commits
mailing list