blob: 2236e8bf38fcc8ad655a14ef0c4cfcd0e0ddaccf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
; RUN: llvm-as %s -o - | llvm-dis > %t1.ll
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
declare i31 @"bar"(i31 %in)
define i31 @"foo"(i31 %blah)
begin
%xx = call i31 @bar(i31 %blah)
ret i31 %xx
end
|