brintos

brintos / llvm-project-archived public Read only

0
0
Text · 321 B · 9c96799 Raw
14 lines · plain
1; RUN: not llvm-as -disable-output 2>&1 %s | FileCheck %s2 3; CHECK: llvm.reloc.none argument must be a metadata string4; CHECK-NEXT: call void @llvm.reloc.none(metadata !0)5 6define void @test_reloc_none_bad_arg() {7  call void @llvm.reloc.none(metadata !0)8  ret void9}10 11declare void @llvm.reloc.none(metadata)12 13!0 = !{}14