summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/NewGVN/eliminate-callsite-inline.ll
blob: 699bbb32253a54bdbeedb0a763126d59efac2c3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; RUN: opt -inline -newgvn -S < %s | FileCheck %s

; CHECK-LABEL: @f2()
; CHECK-NEXT:    ret void
; CHECK-NOT: @f1

define void @f2() {
  call void @f1()
  call void @f1()
  ret void
}

define internal void @f1() #1 {
entry:
  ret void
}

attributes #1 = { noinline nounwind readnone }
OpenPOWER on IntegriCloud