brintos

brintos / llvm-project-archived public Read only

0
0
Text · 173 B · a8e00cd Raw
11 lines · plain
1; RUN: llc < %s2define i32 @foo(i32 %x) {3        ret i32 %x4}5 6define i32 @main() {7        %r = call i32 @foo( i32 0 )             ; <i32> [#uses=1]8        ret i32 %r9}10 11