summaryrefslogtreecommitdiff
path: root/test/Integer/prototype_bt.ll
blob: c3dc6b23207ac79b594fc7cadfa3b1b07df077d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; 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

implementation

declare i31 "bar"(i31 %in) 

define i31 "foo"(i31 %blah)
begin
  %xx = call i31 %bar(i31 %blah)
  ret i31 %xx
end