xref: /llvm-project/llvm/test/CodeGen/PowerPC/aix-alias-unsupported.ll (revision 427fb35192f1f7bb694a5910b05abc5925a798b2)
1; RUN: not --crash llc < %s -mtriple powerpc-ibm-aix-xcoff 2>&1 | FileCheck %s
2; RUN: not --crash llc < %s -mtriple powerpc64-ibm-aix-xcoff 2>&1 | FileCheck %s
3; CHECK: ERROR: alias without a base object is not yet supported on AIX
4
5@bar = global i32 42
6@test = alias i32, inttoptr(i32 42 to ptr)
7