[llvm] 6ac7b34 - Fix inliner test after e3cd498ff7748f967be1bdcc0a994e40ce82268f

via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 18 04:28:40 PST 2022


Author: OCHyams
Date: 2022-11-18T12:28:15Z
New Revision: 6ac7b341f9ce5b838abdfd70e4352c3860f9f0ad

URL: https://github.com/llvm/llvm-project/commit/6ac7b341f9ce5b838abdfd70e4352c3860f9f0ad
DIFF: https://github.com/llvm/llvm-project/commit/6ac7b341f9ce5b838abdfd70e4352c3860f9f0ad.diff

LOG: Fix inliner test after e3cd498ff7748f967be1bdcc0a994e40ce82268f

Bot failure: https://lab.llvm.org/buildbot/#/builders/16/builds/38156

e3cd498ff7748f967be1bdcc0a994e40ce82268f (D133318) updates CloneBlock to
preserve debug use-before-defs. Update local-as-metadata-undominated-use.ll to
reflect this.

Added: 
    

Modified: 
    llvm/test/Transforms/Inline/local-as-metadata-undominated-use.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/Transforms/Inline/local-as-metadata-undominated-use.ll b/llvm/test/Transforms/Inline/local-as-metadata-undominated-use.ll
index a933d2d13f65f..2a9e55a83e514 100644
--- a/llvm/test/Transforms/Inline/local-as-metadata-undominated-use.ll
+++ b/llvm/test/Transforms/Inline/local-as-metadata-undominated-use.ll
@@ -1,4 +1,4 @@
-; RUN: opt -inline -S < %s | FileCheck %s
+; RUN: opt -passes=inline -S < %s | FileCheck %s
 ; RUN: opt -passes='cgscc(inline)' -S < %s | FileCheck %s
 
 ; Make sure the inliner doesn't crash when a metadata-bridged SSA operand is an
@@ -21,7 +21,7 @@ define i32 @caller(i32 %i) {
 entry:
 ; Although the inliner shouldn't crash, it can't be expected to get the
 ; "correct" SSA value since its assumptions have been violated.
-; CHECK-NEXT:   tail call void @llvm.dbg.value(metadata ![[EMPTY:[0-9]+]],
+; CHECK-NEXT:   tail call void @llvm.dbg.value(metadata i32 %add.i,
 ; CHECK-NEXT:   %{{.*}} = add nsw
   %call = tail call i32 @foo(i32 %i)
   ret i32 %call
@@ -34,8 +34,6 @@ declare void @llvm.dbg.value(metadata, metadata, metadata)
 
 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 3.9.0 (trunk 265634) (llvm/trunk 265637)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
 !1 = !DIFile(filename: "t.c", directory: "/path/to/tests")
-
-; CHECK: ![[EMPTY]] = !{}
 !2 = !{}
 !4 = distinct !DISubprogram(name: "foo", scope: !1, file: !1, line: 2, type: !5, isLocal: false, isDefinition: true, scopeLine: 2, flags: DIFlagPrototyped, isOptimized: true, unit: !0)
 !5 = !DISubroutineType(types: !6)


        


More information about the llvm-commits mailing list