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
/
call-invalid-1.ll
blob
1d48bf6746f448cbbfb64b7e83b9ccfa826e9ead
1
; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s
2
3
declare void @f()
4
5
define void @g() {
6
call void @f() align 8
7
; CHECK: Attribute 'align 8' does not apply to functions!
8
ret void
9
}