diff options
Diffstat (limited to 'test/CodeGen/ppc64-elf-abi.c')
-rw-r--r-- | test/CodeGen/ppc64-elf-abi.c | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/test/CodeGen/ppc64-elf-abi.c b/test/CodeGen/ppc64-elf-abi.c index 0dd183e..59112a0 100644 --- a/test/CodeGen/ppc64-elf-abi.c +++ b/test/CodeGen/ppc64-elf-abi.c @@ -7,6 +7,8 @@ // RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu -emit-llvm -o - %s \ // RUN: -target-abi elfv1 | FileCheck %s --check-prefix=CHECK-ELFv1 // RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu -emit-llvm -o - %s \ +// RUN: -target-abi elfv1-qpx | FileCheck %s --check-prefix=CHECK-ELFv1 +// RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu -emit-llvm -o - %s \ // RUN: -target-abi elfv2 | FileCheck %s --check-prefix=CHECK-ELFv2 // RUN: %clang_cc1 -triple powerpc64le-unknown-linux-gnu -emit-llvm -o - %s \ // RUN: | FileCheck %s --check-prefix=CHECK-ELFv2 @@ -19,22 +21,3 @@ // CHECK-ELFv2: define [2 x float] @func_fab([2 x float] %x.coerce) struct fab { float a; float b; }; struct fab func_fab(struct fab x) { return x; } - -// Verify ABI choice is passed on to the back end - -// RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu -S -o - %s \ -// RUN: | FileCheck %s --check-prefix=CHECK-ASM-ELFv1 -// RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu -S -o - %s \ -// RUN: -target-abi elfv1 | FileCheck %s --check-prefix=CHECK-ASM-ELFv1 -// RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu -S -o - %s \ -// RUN: -target-abi elfv2 | FileCheck %s --check-prefix=CHECK-ASM-ELFv2 -// RUN: %clang_cc1 -triple powerpc64le-unknown-linux-gnu -S -o - %s \ -// RUN: | FileCheck %s --check-prefix=CHECK-ASM-ELFv2 -// RUN: %clang_cc1 -triple powerpc64le-unknown-linux-gnu -S -o - %s \ -// RUN: -target-abi elfv1 | FileCheck %s --check-prefix=CHECK-ASM-ELFv1 -// RUN: %clang_cc1 -triple powerpc64le-unknown-linux-gnu -S -o - %s \ -// RUN: -target-abi elfv2 | FileCheck %s --check-prefix=CHECK-ASM-ELFv2 - -// CHECK-ASM-ELFv2: .abiversion 2 -// CHECK-ASM-ELFv1-NOT: .abiversion 2 - |