[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Transforms / Inline / local-as-metadata-undominated-use.ll
blob2a9e55a83e51476d252fbc93b79a65a287f9c10e
1 ; RUN: opt -passes=inline -S < %s | FileCheck %s
2 ; RUN: opt -passes='cgscc(inline)' -S < %s | FileCheck %s
4 ; Make sure the inliner doesn't crash when a metadata-bridged SSA operand is an
5 ; undominated use.
7 ; If we ever add a verifier check to prevent the scenario in this file, it's
8 ; fine to delete this testcase.  However, we would need a bitcode upgrade since
9 ; such historical IR exists in practice.
11 define i32 @foo(i32 %i) !dbg !4 {
12 entry:
13   tail call void @llvm.dbg.value(metadata i32 %add, metadata !8, metadata !10), !dbg !11
14   %add = add nsw i32 1, %i, !dbg !12
15   ret i32 %add, !dbg !13
18 ; CHECK-LABEL: define i32 @caller(
19 define i32 @caller(i32 %i) {
20 ; CHECK-NEXT: entry:
21 entry:
22 ; Although the inliner shouldn't crash, it can't be expected to get the
23 ; "correct" SSA value since its assumptions have been violated.
24 ; CHECK-NEXT:   tail call void @llvm.dbg.value(metadata i32 %add.i,
25 ; CHECK-NEXT:   %{{.*}} = add nsw
26   %call = tail call i32 @foo(i32 %i)
27   ret i32 %call
30 declare void @llvm.dbg.value(metadata, metadata, metadata)
32 !llvm.dbg.cu = !{!0}
33 !llvm.module.flags = !{!9}
35 !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)
36 !1 = !DIFile(filename: "t.c", directory: "/path/to/tests")
37 !2 = !{}
38 !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)
39 !5 = !DISubroutineType(types: !6)
40 !6 = !{!7, !7}
41 !7 = !DIBasicType(name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
42 !8 = !DILocalVariable(name: "add", arg: 1, scope: !4, file: !1, line: 2, type: !7)
43 !9 = !{i32 2, !"Debug Info Version", i32 3}
44 !10 = !DIExpression()
45 !11 = !DILocation(line: 2, column: 13, scope: !4)
46 !12 = !DILocation(line: 2, column: 27, scope: !4)
47 !13 = !DILocation(line: 2, column: 18, scope: !4)