[PATCH] D58885: Variable auto-init: split out small arrays
JF Bastien via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Mar 4 09:39:28 PST 2019
jfb marked 3 inline comments as done.
jfb added inline comments.
================
Comment at: lib/CodeGen/CGDecl.cpp:1206
+ bool canDoSingleStore = Ty->isIntOrIntVectorTy() ||
+ Ty->isPtrOrPtrVectorTy() || Ty->isFPOrFPVectorTy();
+ if (canDoSingleStore) {
----------------
glider wrote:
> Is the second expression being moved to line 1206 a result of clang-format? Otherwise it'll migrate back at some point.
Yes, the slightly longer name pushes it past 80 columns, and I just auto-format stuff before uploading.
I can do this change separately, I just noticed that the name I originally used was now misleading because vectors aren't scalars :)
Repository:
rC Clang
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D58885/new/
https://reviews.llvm.org/D58885
More information about the cfe-commits
mailing list