Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / GlobalMerge / debug-info.ll
blob8a535b5d3873acffd138aa83a3177ba946790fb5
1 ; RUN: opt -global-merge -global-merge-max-offset=100 -S -o - %s | FileCheck %s
2 ; RUN: opt -passes='global-merge<max-offset=100>' -S -o - %s | FileCheck %s
4 source_filename = "test/Transforms/GlobalMerge/debug-info.ll"
5 target datalayout = "e-p:64:64"
6 target triple = "x86_64-unknown-linux-gnu"
7 ; CHECK: @_MergedGlobals = private global <{ i32, i32 }> <{ i32 1, i32 2 }>, align 4, !dbg [[A:![0-9]+]], !dbg [[B:![0-9]+]]
9 @a = internal global i32 1, !dbg !0
10 @b = internal global i32 2, !dbg !2
12 define void @use1() {
13   %x = load i32, ptr @a
14   %y = load i32, ptr @b
15   ret void
17 ; CHECK: [[A]] = !DIGlobalVariableExpression(var: [[AVAR:![0-9]+]], expr: !DIExpression())
18 ; CHECK: [[AVAR]] = !DIGlobalVariable(name: "a", scope: null, type: !2, isLocal: false, isDefinition: true)
19 ; CHECK: [[B]] = !DIGlobalVariableExpression(var: [[BVAR:![0-9]+]], expr: !DIExpression(DW_OP_plus_uconst, 4))
20 ; CHECK: [[BVAR]] = !DIGlobalVariable(name: "b", scope: null, type: !2, isLocal: false, isDefinition: true)
22 !llvm.module.flags = !{!4, !5}
24 !0 = !DIGlobalVariableExpression(var: !1, expr: !DIExpression())
25 !1 = !DIGlobalVariable(name: "a", scope: null, type: !6, isLocal: false, isDefinition: true)
26 !2 = !DIGlobalVariableExpression(var: !3, expr: !DIExpression())
27 !3 = !DIGlobalVariable(name: "b", scope: null, type: !6, isLocal: false, isDefinition: true)
28 !4 = !{i32 2, !"Debug Info Version", i32 3}
29 !5 = !{i32 2, !"Dwarf Version", i32 4}
30 !6 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)