OSDN Git Service

convert to filecheck.
authorChris Lattner <sabre@nondot.org>
Tue, 27 Oct 2009 05:35:35 +0000 (05:35 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 27 Oct 2009 05:35:35 +0000 (05:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85205 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/Inline/basictest.ll

index 71e00cb..451b8cb 100644 (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
 }