diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-03-19 18:08:42 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-03-19 18:08:42 +0000 |
commit | 660c4f9fac73b5ae7865e1d0adbbc99a62bef31a (patch) | |
tree | 0948af6e942391a2633ad6c480c474935f82ca83 /test/BugPoint | |
parent | 757072d954937514585b5c213f01f851d31826a1 (diff) | |
download | external_llvm-660c4f9fac73b5ae7865e1d0adbbc99a62bef31a.zip external_llvm-660c4f9fac73b5ae7865e1d0adbbc99a62bef31a.tar.gz external_llvm-660c4f9fac73b5ae7865e1d0adbbc99a62bef31a.tar.bz2 |
Don't upgrade these.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35166 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/BugPoint')
-rw-r--r-- | test/BugPoint/crash-basictest.ll | 9 | ||||
-rw-r--r-- | test/BugPoint/crash-narrowfunctiontest.ll | 14 | ||||
-rw-r--r-- | test/BugPoint/remove_arguments_test.ll | 15 |
3 files changed, 18 insertions, 20 deletions
diff --git a/test/BugPoint/crash-basictest.ll b/test/BugPoint/crash-basictest.ll index 77eb6ec..647a53f 100644 --- a/test/BugPoint/crash-basictest.ll +++ b/test/BugPoint/crash-basictest.ll @@ -1,9 +1,8 @@ ; Basic test for bugpoint. -; RUN: llvm-upgrade < %s > %t1.ll -; RUN: bugpoint %t1.ll -domset -idom -domset -bugpoint-crashcalls \ +; RUN: bugpoint %s -domset -idom -domset -bugpoint-crashcalls \ ; RUN: -domset -idom -domset -int %test() { - call int %test() - ret int %0 +define i32 @test() { + call i32 @test() + ret i32 %1 } diff --git a/test/BugPoint/crash-narrowfunctiontest.ll b/test/BugPoint/crash-narrowfunctiontest.ll index 197e42f..ef0db8d 100644 --- a/test/BugPoint/crash-narrowfunctiontest.ll +++ b/test/BugPoint/crash-narrowfunctiontest.ll @@ -1,14 +1,12 @@ ; Test that bugpoint can narrow down the testcase to the important function ; -; RUN: llvm-upgrade < %s > %t1.ll -; RUN: bugpoint %t1.ll -bugpoint-crashcalls +; RUN: bugpoint %s -bugpoint-crashcalls -int %foo() { ret int 1 } +define i32 @foo() { ret i32 1 } -int %test() { - call int %test() - ret int %0 +define i32 @test() { + call i32 @test() + ret i32 %1 } -int %bar() { ret int 2 } - +define i32 @bar() { ret i32 2 } diff --git a/test/BugPoint/remove_arguments_test.ll b/test/BugPoint/remove_arguments_test.ll index ed77da7..4d2c60d 100644 --- a/test/BugPoint/remove_arguments_test.ll +++ b/test/BugPoint/remove_arguments_test.ll @@ -1,10 +1,11 @@ -; RUN: llvm-upgrade < %s > %t1.ll -; RUN: bugpoint %t1.ll -bugpoint-crashcalls +; RUN: bugpoint %s -bugpoint-crashcalls -; Test to make sure that arguments are removed from the function if they are unnecessary. +; Test to make sure that arguments are removed from the function if they are +; unnecessary. -declare int %test2() -int %test(int %A, int %B, float %C) { - call int %test2() - ret int %0 +declare i32 @test2() + +define i32 @test(i32 %A, i32 %B, float %C) { + call i32 @test2() + ret i32 %1 } |