[InstCombine] Signed saturation tests. NFC
[llvm-complete.git] / test / Transforms / Scalarizer / dbgloc-bug.ll
blob7c627ee78a3446845bcd06728bbde42b4cd6c0a7
1 ; RUN: opt -S -march=x86 -scalarizer %s | FileCheck %s
2 ; RUN: opt -S -march=x86 -passes='function(scalarizer)' %s | FileCheck %s
4 ; Reproducer for pr27938
5 ; https://llvm.org/bugs/show_bug.cgi?id=27938
7 define i16 @f1() !dbg !5 {
8   ret i16 undef, !dbg !9
11 define void @f2() !dbg !10 {
12 bb1:
13   %_tmp7 = tail call i16 @f1(), !dbg !13
14 ; CHECK: call i16 @f1(), !dbg !13
15   %broadcast.splatinsert5 = insertelement <4 x i16> undef, i16 %_tmp7, i32 0
16   %broadcast.splat6 = shufflevector <4 x i16> %broadcast.splatinsert5, <4 x i16> undef, <4 x i32> zeroinitializer
17   br label %vector.body
19 vector.body:
20   br i1 undef, label %middle.block, label %vector.body
22 middle.block:
23   ret void, !dbg !15
26 !llvm.dbg.cu = !{!0}
27 !llvm.module.flags = !{!3, !4}
29 !0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, isOptimized: true, runtimeVersion: 0, emissionKind: LineTablesOnly, enums: !2, retainedTypes: !2)
30 !1 = !DIFile(filename: "dbgloc-bug.c", directory: ".")
31 !2 = !{}
32 !3 = !{i32 2, !"Dwarf Version", i32 4}
33 !4 = !{i32 2, !"Debug Info Version", i32 3}
34 !5 = distinct !DISubprogram(name: "f1", scope: !1, file: !1, line: 9, type: !6, isLocal: false, isDefinition: true, scopeLine: 10, isOptimized: true, unit: !0, retainedNodes: !2)
35 !6 = !DISubroutineType(types: !7)
36 !7 = !{!8}
37 !8 = !DIBasicType(name: "short", size: 16, align: 16, encoding: DW_ATE_signed)
38 !9 = !DILocation(line: 11, column: 5, scope: !5)
39 !10 = distinct !DISubprogram(name: "f2", scope: !1, file: !1, line: 14, type: !11, isLocal: false, isDefinition: true, scopeLine: 15, isOptimized: true, unit: !0, retainedNodes: !2)
40 !11 = !DISubroutineType(types: !12)
41 !12 = !{null}
42 !13 = !DILocation(line: 24, column: 9, scope: !14)
43 !14 = !DILexicalBlock(scope: !10, file: !1, line: 17, column: 5)
44 !15 = !DILocation(line: 28, column: 1, scope: !10)