mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 05:06:06 +00:00

This patch removes uses of the Darwin ABI for PowerPC related test cases. This is the first step in removing Darwin support from the POWER backend. clang/test/CodeGen/darwin-ppc-varargs.c was deleted because it was a darwin/ppc specific test case. All other tests were updated to remove the darwin/ppc specific invocation. Phabricator Review: https://reviews.llvm.org/D50989. llvm-svn: 340770
9 lines
449 B
C++
9 lines
449 B
C++
// RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu %s -emit-llvm -o - | FileCheck %s --check-prefix=POWER64-LINUX
|
|
// RUN: %clang_cc1 -triple powerpc-unknown-linux-gnu %s -emit-llvm -o - | FileCheck %s --check-prefix=POWER-LINUX
|
|
// RUN: %clang_cc1 -triple s390x-unknown-linux-gnu %s -emit-llvm -o - | FileCheck %s --check-prefix=S390X-LINUX
|
|
|
|
void f(long double) {}
|
|
// POWER64-LINUX: _Z1fg
|
|
// POWER-LINUX: _Z1fg
|
|
// S390X-LINUX: _Z1fg
|