repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bump version to 19.1.0-rc3
[llvm-project.git]
/
llvm
/
test
/
Assembler
/
implicit-intrinsic-declaration-invalid.ll
blob
63566a26dfa023ee8644a043caa71ee37600dea0
1
; RUN: not llvm-as < %s 2>&1 | FileCheck %s
2
3
; Use of intrinsic without mangling suffix and invalid signature should
4
; be rejected.
5
6
; CHECK: error: invalid intrinsic signature
7
define void @test() {
8
call i8 @llvm.umax(i8 0, i16 1)
9
ret void
10
}