blob: 2303b593ffeae2844d2f2ec5dd3234967faf18a7 [file] [log] [blame]
Tanya Lattner9bc243b2008-03-01 07:38:40 +00001; RUN: llvm-as < %s | llvm-dis > %t1.ll
Tanya Lattner3f7706b2004-11-07 06:08:43 +00002; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3; RUN: diff %t1.ll %t2.ll
4
Chris Lattner00950542001-06-06 20:29:01 +00005; Test "stripped" format where nothing is symbolic... this is how the bytecode
6; format looks anyways (except for negative vs positive offsets)...
7;
Chris Lattner8b309de2002-01-31 00:25:00 +00008
Tanya Lattner9bc243b2008-03-01 07:38:40 +00009define void @void(i32, i32) {
10 add i32 0, 0 ; <i32>:3 [#uses=2]
11 sub i32 0, 4 ; <i32>:4 [#uses=2]
12 br label %5
Chris Lattner00950542001-06-06 20:29:01 +000013
Tanya Lattner9bc243b2008-03-01 07:38:40 +000014; <label>:5 ; preds = %5, %2
15 add i32 %0, %1 ; <i32>:6 [#uses=2]
16 sub i32 %6, %4 ; <i32>:7 [#uses=1]
17 icmp sle i32 %7, %3 ; <i1>:8 [#uses=1]
18 br i1 %8, label %9, label %5
19
20; <label>:9 ; preds = %5
21 add i32 %0, %1 ; <i32>:10 [#uses=0]
22 sub i32 %6, %4 ; <i32>:11 [#uses=1]
23 icmp sle i32 %11, %3 ; <i1>:12 [#uses=0]
24 ret void
25}
Chris Lattner00950542001-06-06 20:29:01 +000026
27; This function always returns zero
Tanya Lattner9bc243b2008-03-01 07:38:40 +000028define i32 @zarro() {
Chris Lattner00950542001-06-06 20:29:01 +000029Startup:
Tanya Lattner9bc243b2008-03-01 07:38:40 +000030 ret i32 0
31}