brintos

brintos / llvm-project-archived public Read only

0
0
Text · 271 B · bca9232 Raw
16 lines · plain
1; Test return attributes2; RUN: llvm-as < %s | llvm-dis | FileCheck %s3; RUN: verify-uselistorder %s4 5; CHECK: define inreg i32 @fn1()6define inreg i32 @fn1() {7  ret i32 08}9 10; CHECK: call inreg i32 @fn1()11define void @fn2() {12  %t = call inreg i32 @fn1()13  ret void14}15 16