[PATCH] D111968: [TTI] Add OperandValueProperties::OP_NegatedPowerOf2 enum
Alexey Bataev via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 23 05:47:22 PDT 2022
ABataev accepted this revision.
ABataev added a comment.
This revision is now accepted and ready to land.
LG with a nit
================
Comment at: llvm/include/llvm/Analysis/TargetTransformInfo.h:915
+ OP_PowerOf2 = 1,
+ OP_NegatedPowerOf2 = 2
+ };
----------------
Add comma after the last enum item, common practice to reduce number of changes in future.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D111968/new/
https://reviews.llvm.org/D111968
More information about the llvm-commits
mailing list