brintos

brintos / llvm-project-archived public Read only

0
0
Text · 246 B · 63566a2 Raw
11 lines · plain
1; RUN: not llvm-as < %s 2>&1 | FileCheck %s2 3; Use of intrinsic without mangling suffix and invalid signature should4; be rejected.5 6; CHECK: error: invalid intrinsic signature7define void @test() {8  call i8 @llvm.umax(i8 0, i16 1)9  ret void10}11