1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00
llvm-mirror/test/Transforms/Inline/externally_available.ll
Arthur Eubanks bda0badb98 [test] Rewrite various tests to not use constprop
Reviewed By: nikic

Differential Revision: https://reviews.llvm.org/D86653
2020-08-26 12:57:12 -07:00

24 lines
395 B
LLVM

; RUN: opt < %s -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