[PATCH] D120657: [Flang] NFC: Changes to adhere to coding guidelines
Eric Schweitz via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 28 10:52:24 PST 2022
schweitz accepted this revision.
schweitz added a comment.
This revision is now accepted and ready to land.
I don't think always getting rid of type inferencing is really necessary and as code owner would accept using it.
================
Comment at: flang/lib/Lower/IntrinsicCall.cpp:330
- std::array<int, dataSize> conversions{/* zero init*/};
- bool infinite{false}; // When forbidden conversion or wrong argument number
+ std::array<int, dataSize> conversions;
+ bool infinite = false; // When forbidden conversion or wrong argument number
----------------
To avoid regressions. :)
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D120657/new/
https://reviews.llvm.org/D120657
More information about the llvm-commits
mailing list