blob: 6ef37c7083a08eecddb1928a55e533b2077243cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
; RUN: llvm-upgrade < %s | llvm-as | llvm-dis > %t1.ll
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
%x = type int
implementation
int "foo"(int %in)
begin
label:
ret int 2
end
|