mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-08 03:30:22 +00:00
2003bcfbd2
Testcase from Nick Lewycky. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111341 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
}
|