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
/
Transforms
/
Inline
/
inline-scalable.ll
blob
7cab4e0fa9e6b0780f609cfed0aa33f039ce0bce
1
; RUN: opt -S -passes=inline < %s | FileCheck %s
2
3
define void @func() {
4
; CHECK-LABEL: func
5
; CHECK-NEXT: [[VEC_ADDR:%.*]] = alloca <vscale x 4 x i32>
6
; CHECK-NEXT: call void @func()
7
; CHECK-NEXT: ret void
8
%vec.addr = alloca <vscale x 4 x i32>
9
call void @func();
10
ret void
11
}