brintos

brintos / llvm-project-archived public Read only

0
0
Text · 290 B · 1283cc7 Raw
14 lines · plain
1; RUN: llvm-as < %s | llvm-dis | FileCheck %s2; RUN: verify-uselistorder %s3 4%struct = type {  }5 6; CHECK: declare void @foo(...)7declare void @foo(...)8 9; CHECK: call void (...) @foo(ptr byval(%struct) null)10define void @bar() {11	call void (...) @foo(ptr byval(%struct) null )12	ret void13}14