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
/
Bitcode
/
upgrade-void-ret-attr-11.0.ll
blob
81852da7ce4a542fe43e9715e9f49e3ca886a262
1
; Check upgrade is removing the incompatible attributes on void return type.
2
3
; RUN: llvm-dis < %s.bc | FileCheck %s
4
5
; CHECK: define void @f()
6
define align 8 void @f() {
7
ret void
8
}
9
10
define void @g() {
11
; CHECK: call void @f()
12
call align 8 void @f();
13
ret void
14
}