You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
309 B

; RUN: not llvm-as -disable-output < %s -o /dev/null 2>&1 | FileCheck %s
define void @test1(float* %a) {
entry:
; CHECK: annotation must have at least one operand
%a.addr = alloca float*, align 8, !annotation !0
; CHECK-NEXT: operands must be strings
ret void, !annotation !1
}
!0 = !{}
!1 = !{i32 10}