brintos

brintos / llvm-project-archived public Read only

0
0
Text · 243 B · 01b2258 Raw
10 lines · plain
1; RUN: not opt -passes=verify -S < %s 2>&1 | FileCheck %s2 3declare i32 @llvm.umax.i32(i32, i32)4 5define void @intrinsic_signature_mismatch() {6; CHECK: Intrinsic called with incompatible signature7  call i32 @llvm.umax.i32(i32 0)8  ret void9}10