Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / PowerPC / aix-nest-param.ll
blob1863eaf999f142fc544724eadaf1f69e29108581
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 ptr @nest_receiver(ptr nest %arg) nounwind {
5   ret ptr %arg
8 define ptr @nest_caller(ptr %arg) nounwind {
9   %result = call ptr @nest_receiver(ptr nest %arg)
10   ret ptr %result
13 ; CHECK: LLVM ERROR: Nest arguments are unimplemented.