[PATCH] D73967: Implement _ExtInt as an extended int type specifier.
Erich Keane via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Feb 27 10:45:32 PST 2020
erichkeane marked an inline comment as done.
erichkeane added inline comments.
================
Comment at: clang/lib/AST/ASTContext.cpp:4020
+
+ auto *New = new (*this, TypeAlignment) ExtIntType(IsUnsigned, NumBits);
+ ExtIntTypes.InsertNode(New, InsertPos);
----------------
keryell wrote:
> Why no just `auto` without a `*` everywhere?
The LLVM coding standard requires it.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D73967/new/
https://reviews.llvm.org/D73967
More information about the cfe-commits
mailing list