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
[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git]
/
llvm
/
test
/
Transforms
/
Inline
/
inline-scalable.ll
blob
756f556a9d2d13411bb23e89dea7f566ba944903
1
; RUN: opt -S -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
}