[PATCH] D73967: Implement _ExtInt as an extended int type specifier.
Ronan Keryell via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Feb 27 10:44:24 PST 2020
keryell added inline comments.
================
Comment at: clang/lib/AST/ASTContext.cpp:4020
+
+ auto *New = new (*this, TypeAlignment) ExtIntType(IsUnsigned, NumBits);
+ ExtIntTypes.InsertNode(New, InsertPos);
----------------
Why no just `auto` without a `*` everywhere?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D73967/new/
https://reviews.llvm.org/D73967
More information about the cfe-commits
mailing list