1 // REQUIRES: powerpc-registered-target
2
3 // Verify ABI selection by the front end
4
5 // RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu -emit-llvm -o - %s \
6 // RUN: | FileCheck %s --check-prefix=CHECK-ELFv1
7 // RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu -emit-llvm -o - %s \
8 // RUN: -target-abi elfv1 | FileCheck %s --check-prefix=CHECK-ELFv1
9 // RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu -emit-llvm -o - %s \
10 // RUN: -target-abi elfv1-qpx | FileCheck %s --check-prefix=CHECK-ELFv1
11 // RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu -emit-llvm -o - %s \
12 // RUN: -target-abi elfv2 | FileCheck %s --check-prefix=CHECK-ELFv2
13 // RUN: %clang_cc1 -triple powerpc64le-unknown-linux-gnu -emit-llvm -o - %s \
14 // RUN: | FileCheck %s --check-prefix=CHECK-ELFv2
15 // RUN: %clang_cc1 -triple powerpc64le-unknown-linux-gnu -emit-llvm -o - %s \
16 // RUN: -target-abi elfv1 | FileCheck %s --check-prefix=CHECK-ELFv1
17 // RUN: %clang_cc1 -triple powerpc64le-unknown-linux-gnu -emit-llvm -o - %s \
18 // RUN: -target-abi elfv2 | FileCheck %s --check-prefix=CHECK-ELFv2
19
20 // CHECK-ELFv1: define void @func_fab(%struct.fab* noalias sret %agg.result, i64 %x.coerce)
21 // CHECK-ELFv2: define [2 x float] @func_fab([2 x float] %x.coerce)
22 struct fab { float a; float b; };
func_fab(struct fab x)23 struct fab func_fab(struct fab x) { return x; }
24