aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/Transforms/InstCombine/storemerge-dbg.ll
blob: bb1d616c312a3f592d237b1b99caa813a4303818 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
; RUN: opt < %s -passes=debugify,instcombine -S | FileCheck %s

declare i32 @escape(i32)

; CHECK-LABEL: define {{.*}}@foo(
define i32 @foo(i1 %c1) {
entry:
  %baz = alloca i32
  br i1 %c1, label %lhs, label %rhs

lhs:
  store i32 1, ptr %baz
  br label %cleanup

rhs:
  store i32 2, ptr %baz
  br label %cleanup

cleanup:
  ; CHECK: %storemerge = phi i32 [ 2, %rhs ], [ 1, %lhs ], !dbg [[merge_loc:![0-9]+]]
  %baz.val = load i32, ptr %baz
  %ret.val = call i32 @escape(i32 %baz.val)
  ret i32 %ret.val
}

; CHECK: [[merge_loc]] = !DILocation(line: 0