mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-14 01:46:41 +00:00

Summary: Created AIXABIInfo and AIXTargetCodeGenInfo for AIX ABI. Reviewed By: Xiangling_L, ZarkoCA Differential Revision: https://reviews.llvm.org/D79035
11 lines
510 B
C
11 lines
510 B
C
// REQUIRES: powerpc-registered-target
|
|
// RUN: not %clang_cc1 -triple powerpc-unknown-aix -maix-struct-return \
|
|
// RUN: -c %s 2>&1 | FileCheck %s
|
|
// RUN: not %clang_cc1 -triple powerpc-unknown-aix -msvr4-struct-return \
|
|
// RUN: -c %s 2>&1 | FileCheck %s
|
|
// RUN: not %clang_cc1 -triple powerpc64-unknown-aix -maix-struct-return \
|
|
// RUN: -c %s 2>&1 | FileCheck %s
|
|
// RUN: not %clang_cc1 -triple powerpc64-unknown-aix -msvr4-struct-return \
|
|
// RUN: -c %s 2>&1 | FileCheck %s
|
|
// CHECK: unsupported option
|