[PATCH] D70095: [PGO][PGSO] DAG.shouldOptForSize part.
Sanjay Patel via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 14 12:43:39 PST 2019
spatel added inline comments.
================
Comment at: llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp:402
// one use of the value.
- if (ForCodeSize || V.hasOneUse())
+ if (CurDAG->shouldOptForSize() || V.hasOneUse())
return true;
----------------
If this was the only use of the "ForCodeSize" class variable, then it should be removed now?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D70095/new/
https://reviews.llvm.org/D70095
More information about the llvm-commits
mailing list