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'
8 call i8 @llvm.umax(i8 0, i8 1)
9 call i16 @llvm.umax(i16 0, i16 1)