diff options
author | David Sherwood <david.sherwood@arm.com> | 2025-01-20 14:41:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-20 14:41:27 +0000 |
commit | fcec8756e25333b6f49472f00e043f2389736c0b (patch) | |
tree | 0e97c3a4dd9e64798140281290a898dcf5c6e1e8 /llvm/lib/Bitcode/Reader/BitcodeReader.cpp | |
parent | 723a3e746ab7f130d448343e6a7b61e146954b60 (diff) | |
download | llvm-fcec8756e25333b6f49472f00e043f2389736c0b.zip llvm-fcec8756e25333b6f49472f00e043f2389736c0b.tar.gz llvm-fcec8756e25333b6f49472f00e043f2389736c0b.tar.bz2 |
[LoopVectorize][NFC] Simplify ScaledReductionExitInstrs map (#123368)
For the following variable
DenseMap<const Instruction *, std::pair<PartialReductionChain,
unsigned>>
ScaledReductionExitInstrs;
we never actually need the PartialReductionChain when using the map.
I've cleaned this up so that this now becomes
DenseMap<const Instruction *, unsigned> ScaledReductionMap;
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp')
0 files changed, 0 insertions, 0 deletions