[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / PowerPC / aix-nest-param.ll
blobf768eba31d588226d8b47df0b042facd96f9cd99
1 ; RUN: not --crash llc -mtriple powerpc-ibm-aix-xcoff < %s 2>&1 | FileCheck %s
2 ; RUN: not --crash llc -mtriple powerpc64-ibm-aix-xcoff < %s 2>&1 | FileCheck %s
4 define i8* @nest_receiver(i8* nest %arg) nounwind {
5   ret i8* %arg
8 define i8* @nest_caller(i8* %arg) nounwind {
9   %result = call i8* @nest_receiver(i8* nest %arg)
10   ret i8* %result
13 ; CHECK: LLVM ERROR: Nest arguments are unimplemented.