mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 18:34:09 +00:00
12 lines
255 B
LLVM
12 lines
255 B
LLVM
|
; RUN: llc < %s -march=x86-64
|
||
|
; PR 9267
|
||
|
|
||
|
define<4 x i64> @func_32_64() {
|
||
|
%F = load <4 x i32>* undef
|
||
|
%G = zext <4 x i32> %F to <4 x i64>
|
||
|
%H = load <4 x i32>* undef
|
||
|
%Y = zext <4 x i32> %H to <4 x i64>
|
||
|
%T = or <4 x i64> %Y, %G
|
||
|
ret <4 x i64> %T
|
||
|
}
|