aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/Transforms/Inline/externally_available.ll
blob: 76e030a28e175d903cf2762305ea794acf6aa209 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
; RUN: opt < %s -passes=inline -S | FileCheck %s

define available_externally i32 @test_function() {
; CHECK-NOT: @test_function
entry:
  ret i32 4
}


define i32 @result() {
; CHECK-LABEL: define i32 @result()
entry:
  %A = call i32 @test_function()
; CHECK-NOT: call
; CHECK-NOT: @test_function

  %B = add i32 %A, 1
  ret i32 %B
; CHECK: add i32
; CHECK-NEXT: ret i32
}

; CHECK-NOT: @test_function