[PATCH] D137234: [CodeGenPrep] Change ValueToSExts from DeseMap to MapVector
Haohai, Wen via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 3 20:15:50 PDT 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGe419620fc2f5: [CodeGenPrep] Change ValueToSExts from DeseMap to MapVector (authored by HaohaiWen).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D137234/new/
https://reviews.llvm.org/D137234
Files:
llvm/lib/CodeGen/CodeGenPrepare.cpp
Index: llvm/lib/CodeGen/CodeGenPrepare.cpp
===================================================================
--- llvm/lib/CodeGen/CodeGenPrepare.cpp
+++ llvm/lib/CodeGen/CodeGenPrepare.cpp
@@ -287,7 +287,7 @@
using TypeIsSExt = PointerIntPair<Type *, 2, ExtType>;
using InstrToOrigTy = DenseMap<Instruction *, TypeIsSExt>;
using SExts = SmallVector<Instruction *, 16>;
-using ValueToSExts = DenseMap<Value *, SExts>;
+using ValueToSExts = MapVector<Value *, SExts>;
class TypePromotionTransaction;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D137234.473112.patch
Type: text/x-patch
Size: 508 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221104/bdc65267/attachment.bin>
More information about the llvm-commits
mailing list