diff options
author | Chris Lattner <sabre@nondot.org> | 2009-10-27 05:35:35 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-10-27 05:35:35 +0000 |
commit | 58ee24c8bfbcd8a77fc7787b3bfc715cae9e3516 (patch) | |
tree | 84fc204b37be8e19208fcbcbea1a91945a7c49d4 | |
parent | e8d20795a3a25868e941396bd5b9113d4d338fc8 (diff) | |
download | bcm5719-llvm-58ee24c8bfbcd8a77fc7787b3bfc715cae9e3516.tar.gz bcm5719-llvm-58ee24c8bfbcd8a77fc7787b3bfc715cae9e3516.zip |
convert to filecheck.
llvm-svn: 85205
-rw-r--r-- | llvm/test/Transforms/Inline/basictest.ll | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/llvm/test/Transforms/Inline/basictest.ll b/llvm/test/Transforms/Inline/basictest.ll index 71e00cb4c08..451b8cbdfd9 100644 --- a/llvm/test/Transforms/Inline/basictest.ll +++ b/llvm/test/Transforms/Inline/basictest.ll @@ -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 } |