brintos

brintos / llvm-project-archived public Read only

0
0
Text · 287 B · 4e57ef8 Raw
17 lines · plain
1; RUN: llc < %s2 3define i32 @bar(i32 %x) {4        ret i32 05}6 7define i32 @foo(i32 %x) {8        %q = call i32 @bar( i32 1 )             ; <i32> [#uses=1]9        ret i32 %q10}11 12define i32 @main() {13        %r = call i32 @foo( i32 2 )             ; <i32> [#uses=1]14        ret i32 %r15}16 17