[InstNamer] use 'i' for Instructions, not 'tmp'
authorSanjay Patel <spatel@rotateright.com>
Mon, 1 Jun 2020 14:56:27 +0000 (10:56 -0400)
committerSanjay Patel <spatel@rotateright.com>
Mon, 1 Jun 2020 15:11:14 +0000 (11:11 -0400)
As discussed in https://bugs.llvm.org/show_bug.cgi?id=45951 and
D80584, the name 'tmp' is almost always a bad choice, but we have
a legacy of regression tests with that name because it was baked
into utils/update_test_checks.py.

This change makes -instnamer more consistent (already using "arg"
and "bb", the common LLVM shorthand). And it avoids the conflict
in telling users of the FileCheck script to run "-instnamer" to
create a better regression test and having that cause a warn/fail
in update_test_checks.py.

llvm/lib/Transforms/Utils/InstructionNamer.cpp
llvm/test/Transforms/InstNamer/basic.ll

index aac0b55..8e339fe 100644 (file)
@@ -42,7 +42,7 @@ namespace {
 
         for (Instruction &I : BB)
           if (!I.hasName() && !I.getType()->isVoidTy())
-            I.setName("tmp");
+            I.setName("i");
       }
       return true;
     }
index 4c81924..5fbcfca 100644 (file)
@@ -6,10 +6,10 @@ target triple = "x86_64-unknown-linux-gnu"
 define i32 @f_0(i32) {
 ; CHECK-LABEL: @f_0(
 ; CHECK: bb:
-; CHECK-NEXT:   %tmp = add i32 %arg, 2
+; CHECK-NEXT:   %i = add i32 %arg, 2
 ; CHECK-NEXT:   br label %bb1
 ; CHECK: bb1:
-; CHECK-NEXT:   ret i32 %tmp
+; CHECK-NEXT:   ret i32 %i
 
   %2 = add i32 %0, 2
   br label %3