[Metarenamer] Use 'inst' as default name for instructions
authorMax Kazantsev <mkazantsev@azul.com>
Wed, 15 Feb 2023 08:34:24 +0000 (15:34 +0700)
committerMax Kazantsev <mkazantsev@azul.com>
Wed, 15 Feb 2023 08:35:25 +0000 (15:35 +0700)
Currently we use 'tmp', which is also a keyword for FileCheck. It leads to this
annoying warning whenever a script for auto-generation of checks is used.
It is especially annoying that it happens to every test affected by metarenamer.

Just use another prefix for metarenamed names to avoid this.

Differential Revision: https://reviews.llvm.org/D144001
Reviewed By: nikic

llvm/lib/Transforms/Utils/MetaRenamer.cpp

index 0ea2106..0987fdc 100644 (file)
@@ -115,7 +115,7 @@ void MetaRename(Function &F) {
 
     for (auto &I : BB)
       if (!I.getType()->isVoidTy())
-        I.setName("tmp");
+        I.setName("inst");
   }
 }