You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
944 B
21 lines
944 B
4 months ago
|
// RUN: not %clang -target powerpc64le-unknown-linux-gnu -fsyntax-only \
|
||
|
// RUN: -mcpu=pwr9 %s 2>&1 | FileCheck %s --check-prefix=HASF128
|
||
|
// RUN: not %clang -target powerpc64le-unknown-linux-gnu -fsyntax-only \
|
||
|
// RUN: -mcpu=power9 %s 2>&1 | FileCheck %s --check-prefix=HASF128
|
||
|
|
||
|
// RUN: not %clang -target powerpc64le-unknown-linux-gnu -fsyntax-only \
|
||
|
// RUN: -mcpu=pwr8 -mfloat128 %s 2>&1 | FileCheck %s --check-prefix=NOF128
|
||
|
// RUN: not %clang -target powerpc64le-unknown-linux-gnu -fsyntax-only \
|
||
|
// RUN: -mcpu=pwr7 -mfloat128 %s 2>&1 | FileCheck %s --check-prefix=NOF128
|
||
|
// RUN: not %clang -target powerpc64le-unknown-linux-gnu -fsyntax-only \
|
||
|
// RUN: -mfloat128 %s 2>&1 | FileCheck %s --check-prefix=NOF128
|
||
|
|
||
|
#ifdef __FLOAT128__
|
||
|
static_assert(false, "__float128 enabled");
|
||
|
#endif
|
||
|
|
||
|
// HASF128: __float128 enabled
|
||
|
// HASF128-NOT: option '-mfloat128' cannot be specified with
|
||
|
// NOF128: option '-mfloat128' cannot be specified with
|
||
|
|