mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-08 18:31:23 +00:00
8 lines
174 B
LLVM
8 lines
174 B
LLVM
|
; RUN: llc -march=arm -mattr=+neon -O2 -o /dev/null
|
||
|
|
||
|
; This used to crash.
|
||
|
define <4 x i32> @test1(<4 x i16> %a) {
|
||
|
%A = zext <4 x i16> %a to <4 x i32>
|
||
|
ret <4 x i32> %A
|
||
|
}
|