brintos

brintos / llvm-project-archived public Read only

0
0
Text · 275 B · c4d68b4 Raw
12 lines · plain
1; RUN: llvm-as < %s | llvm-dis | FileCheck %s2; RUN: verify-uselistorder %s3; Basic smoke test for token type.4 5; CHECK: declare void @llvm.token.foobar(token)6declare void @llvm.token.foobar(token)7 8define void @f() {9  call void @llvm.token.foobar(token none)10  ret void11}12