
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).
12 lines
255 B
LLVM
12 lines
255 B
LLVM
; RUN: llc < %s -mtriple=x86_64--
|
|
|
|
define<4 x i8> @func_8_64() {
|
|
%F = load <4 x i64>, ptr undef
|
|
%G = trunc <4 x i64> %F to <4 x i8>
|
|
%H = load <4 x i64>, ptr undef
|
|
%Y = trunc <4 x i64> %H to <4 x i8>
|
|
%T = add <4 x i8> %Y, %G
|
|
ret <4 x i8> %T
|
|
}
|
|
|