Test updates were performed using: https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34 These are only the test updates where the test passed without further modification (which is almost all of them, as the backend is largely pointer-type agnostic).
13 lines
284 B
LLVM
13 lines
284 B
LLVM
; RUN: llc < %s
|
|
; REQUIRES: default_triple
|
|
|
|
; Legalization test that requires scalarizing a vector.
|
|
|
|
define void @update(<1 x i32> %val, ptr %dst) nounwind {
|
|
entry:
|
|
%shl = shl <1 x i32> %val, < i32 2>
|
|
%shr = ashr <1 x i32> %val, < i32 4>
|
|
store <1 x i32> %shr, ptr %dst
|
|
ret void
|
|
}
|