[LV] Add test showing debug output for loops with uncountable BTCs.
[llvm-project.git] / clang / test / Driver / mlong-double-128.c
bloba6eea7cb8d4f8b6564889adb5e3cc5e9b4dcdb32
1 // RUN: %clang --target=powerpc-linux-musl -c -### %s -mlong-double-128 2>&1 | FileCheck %s
2 // RUN: %clang --target=powerpc64-pc-freebsd12 -c -### %s -mlong-double-128 2>&1 | FileCheck %s
3 // RUN: %clang --target=powerpc64le-linux-musl -c -### %s -mlong-double-128 2>&1 | FileCheck %s
4 // RUN: %clang --target=i686-linux-gnu -c -### %s -mlong-double-128 2>&1 | FileCheck %s
6 // RUN: %clang --target=x86_64-linux-musl -c -### %s -mlong-double-128 -mlong-double-80 2>&1 | FileCheck --implicit-check-not=-mlong-double-128 /dev/null
7 // RUN: %clang --target=x86_64-linux-musl -c -### %s -mlong-double-80 -mlong-double-128 2>&1 | FileCheck %s
9 // CHECK: "-mlong-double-128"
11 // RUN: not %clang --target=aarch64 -c -### %s -mlong-double-128 2>&1 | FileCheck --check-prefix=ERR %s
12 // RUN: not %clang --target=powerpc -c -### %s -mlong-double-80 2>&1 | FileCheck --check-prefix=ERR2 %s
14 // ERR: error: unsupported option '-mlong-double-128' for target 'aarch64'
15 // ERR2: error: unsupported option '-mlong-double-80' for target 'powerpc'