1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

convert to filecheck.

llvm-svn: 85205
This commit is contained in:
Chris Lattner 2009-10-27 05:35:35 +00:00
parent 37191c825b
commit 4648c60623

View File

@ -1,12 +1,15 @@
; RUN: opt < %s -inline -disable-output -print-function 2> /dev/null
; RUN: opt < %s -inline -S | FileCheck %s
define i32 @func(i32 %i) {
define i32 @test1f(i32 %i) {
ret i32 %i
}
define i32 @main(i32 %argc) {
%X = call i32 @func( i32 7 ) ; <i32> [#uses=1]
%Y = add i32 %X, %argc ; <i32> [#uses=1]
define i32 @test1(i32 %W) {
%X = call i32 @test1f(i32 7)
%Y = add i32 %X, %W
ret i32 %Y
; CHECK: @test1(
; CHECK-NEXT: %Y = add i32 7, %W
; CHECK-NEXT: ret i32 %Y
}