aboutsummaryrefslogtreecommitdiffstats
path: root/test/BugPoint/crash-narrowfunctiontest.ll
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-03-19 18:08:42 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-03-19 18:08:42 +0000
commit660c4f9fac73b5ae7865e1d0adbbc99a62bef31a (patch)
tree0948af6e942391a2633ad6c480c474935f82ca83 /test/BugPoint/crash-narrowfunctiontest.ll
parent757072d954937514585b5c213f01f851d31826a1 (diff)
downloadexternal_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/crash-narrowfunctiontest.ll')
-rw-r--r--test/BugPoint/crash-narrowfunctiontest.ll14
1 files changed, 6 insertions, 8 deletions
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 }