[PATCH] D144001: [Metarenamer] Use 'inst' as default name for instructions
Max Kazantsev via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 15 00:36:59 PST 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG86a63b2ae147: [Metarenamer] Use 'inst' as default name for instructions (authored by mkazantsev).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D144001/new/
https://reviews.llvm.org/D144001
Files:
llvm/lib/Transforms/Utils/MetaRenamer.cpp
Index: llvm/lib/Transforms/Utils/MetaRenamer.cpp
===================================================================
--- llvm/lib/Transforms/Utils/MetaRenamer.cpp
+++ llvm/lib/Transforms/Utils/MetaRenamer.cpp
@@ -115,7 +115,7 @@
for (auto &I : BB)
if (!I.getType()->isVoidTy())
- I.setName("tmp");
+ I.setName("inst");
}
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D144001.497580.patch
Type: text/x-patch
Size: 357 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230215/99c2cd37/attachment.bin>
More information about the llvm-commits
mailing list