64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
9 lines
257 B
LLVM
9 lines
257 B
LLVM
; RUN: llc < %s -mtriple=aarch64-eabi -mcpu=bogus
|
|
|
|
; Fix the bug in PR20557. Set mcpu to a bogus name, llc will crash in type
|
|
; legalization.
|
|
define <4 x float> @fneg4(<4 x float> %x) {
|
|
%sub = fsub <4 x float> zeroinitializer, %x
|
|
ret <4 x float> %sub
|
|
}
|