[llvm-branch-commits] [llvm] 410c150 - [test] Update PR reference in testcase [NFC]

Mikael Holmen via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Mon Nov 23 06:17:54 PST 2020


Author: Mikael Holmen
Date: 2020-11-23T15:12:50+01:00
New Revision: 410c150abb20b71895ea75749b1393647c7ec79f

URL: https://github.com/llvm/llvm-project/commit/410c150abb20b71895ea75749b1393647c7ec79f
DIFF: https://github.com/llvm/llvm-project/commit/410c150abb20b71895ea75749b1393647c7ec79f.diff

LOG: [test] Update PR reference in testcase [NFC]

The testcase was added in faf848ac32 to test the fix of PR 47969, but
it was named pr48980 (which happens to be the TR number in my downstream
issue system).

Added: 
    

Modified: 
    llvm/test/Transforms/Inline/inline-ptrtoint-different-sizes.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/Transforms/Inline/inline-ptrtoint-
diff erent-sizes.ll b/llvm/test/Transforms/Inline/inline-ptrtoint-
diff erent-sizes.ll
index b412504a800c..818792fb55a9 100644
--- a/llvm/test/Transforms/Inline/inline-ptrtoint-
diff erent-sizes.ll
+++ b/llvm/test/Transforms/Inline/inline-ptrtoint-
diff erent-sizes.ll
@@ -1,25 +1,25 @@
 ; RUN: opt < %s -inline -S | FileCheck %s
 
 ; InlineCost used to have problems with the ptrtoint, leading to
-; crashes when visiting the trunc in pr48908_help and the icmp in
+; crashes when visiting the trunc in pr47969_help and the icmp in
 ; pr38500_help.
 
 target datalayout = "p:16:16"
 target triple = "x86_64-unknown-linux-gnu"
 
-define void @pr48980_help(i16* %p) {
+define void @pr47969_help(i16* %p) {
   %cast = ptrtoint i16* %p to i32
   %sub = sub i32 %cast, %cast
   %conv = trunc i32 %sub to i16
   ret void
 }
 
-define void @pr48980(i16* %x) {
-  call void @pr48980_help(i16* %x)
+define void @pr47969(i16* %x) {
+  call void @pr47969_help(i16* %x)
   ret void
 }
 
-; CHECK-LABEL: @pr48980(i16* %x)
+; CHECK-LABEL: @pr47969(i16* %x)
 ; CHECK-NOT:     call
 ; CHECK:         ret void
 


        


More information about the llvm-branch-commits mailing list