blob: 1a4e378519306cf0d1faf568f59bfb458e4d861a [file] [edit]
; RUN: not llvm-as < %s 2>&1 | FileCheck %s
; Use of intrinsic with an invalid signature should be rejected.
; CHECK: intrinsic has incorrect number of args. Expected 1, but got 2
define void @test(float %a) {
call float @llvm.ceil.f32(float %a, float %a)
ret void
}