[PowerPC][AIX] Add test for returning a vector type. [NFC]

Shows error produced when trying to return a vector, which is not
yet supported.
This commit is contained in:
Sean Fertile 2020-08-31 11:14:17 -04:00
parent 22808d693e
commit 84875f6941
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
; RUN: not --crash llc --verify-machineinstrs -mtriple powerpc-ibm-aix-xcoff \
; RUN: -mattr=+altivec 2>&1 < %s | FileCheck %s
; RUN: not --crash llc --verify-machineinstrs -mtriple powerpc64-ibm-aix-xcoff \
; RUN: -mattr=+altivec 2>&1 < %s | FileCheck %s
; CHECK: LLVM ERROR: UPDATE_VRSAVE is unexpected on AIX.
define dso_local <4 x i32> @test() local_unnamed_addr #0 {
entry:
ret <4 x i32> zeroinitializer
}