[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / DebugInfo / salvage-nonconst-binop.ll
blobb470bc1ad2a9164d9c1c8556ea8f600ed933324b
1 ; RUN: opt %s -dce -S | FileCheck %s\r
2 \r
3 ; Tests the salvaging of binary operators that use more than one non-constant\r
4 ; SSA value.\r
5 \r
6 ; CHECK: call void @llvm.dbg.value(metadata !DIArgList(i32 %a, i32 %b),\r
7 ; CHECK-SAME: ![[VAR_C:[0-9]+]],\r
8 ; CHECK-SAME: !DIExpression(DW_OP_LLVM_arg, 0, DW_OP_LLVM_arg, 1, DW_OP_plus, DW_OP_stack_value))\r
9 \r
10 ; CHECK: ![[VAR_C]] = !DILocalVariable(name: "c"\r
12 define i32 @"?multiply@@YAHHH@Z"(i32 %a, i32 %b) !dbg !8 {\r
13 entry:\r
14   call void @llvm.dbg.value(metadata i32 %b, metadata !12, metadata !DIExpression()), !dbg !13\r
15   call void @llvm.dbg.value(metadata i32 %a, metadata !14, metadata !DIExpression()), !dbg !13\r
16   %add = add nsw i32 %a, %b, !dbg !15\r
17   call void @llvm.dbg.value(metadata i32 %add, metadata !16, metadata !DIExpression()), !dbg !13\r
18   %mul = mul nsw i32 %a, %b, !dbg !17\r
19   ret i32 %mul, !dbg !17\r
20 }\r
22 declare void @llvm.dbg.value(metadata, metadata, metadata)\r
24 !llvm.dbg.cu = !{!0}\r
25 !llvm.module.flags = !{!3, !4, !5, !6}\r
26 !llvm.ident = !{!7}\r
28 !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus_14, file: !1, producer: "clang version 11.0.0", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, nameTableKind: None)\r
29 !1 = !DIFile(filename: "test.cpp", directory: "/")\r
30 !2 = !{}\r
31 !3 = !{i32 2, !"CodeView", i32 1}\r
32 !4 = !{i32 2, !"Debug Info Version", i32 3}\r
33 !5 = !{i32 1, !"wchar_size", i32 2}\r
34 !6 = !{i32 7, !"PIC Level", i32 2}\r
35 !7 = !{!"clang version 11.0.0"}\r
36 !8 = distinct !DISubprogram(name: "multiply", linkageName: "?multiply@@YAHHH@Z", scope: !1, file: !1, line: 1, type: !9, scopeLine: 1, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition, unit: !0, retainedNodes: !2)\r
37 !9 = !DISubroutineType(types: !10)\r
38 !10 = !{!11, !11, !11}\r
39 !11 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)\r
40 !12 = !DILocalVariable(name: "b", arg: 2, scope: !8, file: !1, line: 1, type: !11)\r
41 !13 = !DILocation(line: 0, scope: !8)\r
42 !14 = !DILocalVariable(name: "a", arg: 1, scope: !8, file: !1, line: 1, type: !11)\r
43 !15 = !DILocation(line: 2, scope: !8)\r
44 !16 = !DILocalVariable(name: "c", scope: !8, file: !1, line: 2, type: !11)\r
45 !17 = !DILocation(line: 3, scope: !8)\r