mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
a375a1b982
This mostly involved converting from grep to FileCheck and tidying up the IR used. In one case (invoke_test-3.ll) the test had become completely pointless as we use 'resume' rather than 'unwind' now, and even then it did not occur at the end of the line. llvm-svn: 290570
23 lines
386 B
LLVM
23 lines
386 B
LLVM
; RUN: opt < %s -inline -constprop -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: ret i32 5
|
|
}
|
|
|
|
; CHECK-NOT: @test_function
|