erichkeane added inline comments.
================
Comment at: clang/lib/AST/Interp/Context.cpp:134
+llvm::Optional<size_t> Context::sizeofType(QualType T) const {
+ if (llvm::Optional<PrimType> ArgT = classify(T))
+ return primSize(*ArgT);
----------------
This function seems pretty large for something you should be able to pick up
via `ASTContext::getTypeSize` or `ASTContext::getTypeSizeInChars` or
`ASTContext::getTypeSizeInCharsIfKnown`.
================
Comment at: clang/lib/AST/Interp/Context.cpp:149
+
+ return {};
+}
----------------
Typically, I prefer we use llvm::None here.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D133934/new/
https://reviews.llvm.org/D133934
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits