brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.5 KiB · 8a535b5 Raw
31 lines · plain
1; RUN: opt -global-merge -global-merge-max-offset=100 -S -o - %s | FileCheck %s2; RUN: opt -passes='global-merge<max-offset=100>' -S -o - %s | FileCheck %s3 4source_filename = "test/Transforms/GlobalMerge/debug-info.ll"5target datalayout = "e-p:64:64"6target 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]+]]8 9@a = internal global i32 1, !dbg !010@b = internal global i32 2, !dbg !211 12define void @use1() {13  %x = load i32, ptr @a14  %y = load i32, ptr @b15  ret void16}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)21 22!llvm.module.flags = !{!4, !5}23 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)31