Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Assembler / implicit-intrinsic-declaration-invalid.ll
blob0cb35b390337a00bb6b76a336635a1aa92bb2132
1 ; RUN: not llvm-as < %s 2>&1 | FileCheck %s
3 ; Check that intrinsics do not get automatically declared if they are used
4 ; with different function types.
6 ; CHECK: error: use of undefined value '@llvm.umax'
7 define void @test() {
8   call i8 @llvm.umax(i8 0, i8 1)
9   call i16 @llvm.umax(i16 0, i16 1)
10   ret void