|
1 | | -// RUN: %clang -target powerpc64-unknown-aix -S -emit-llvm %s -o - | FileCheck --check-prefix=CHECK-DEFAULT %s |
2 | | -// RUN: %clang -target powerpc-unknown-aix -S -emit-llvm %s -o - | FileCheck --check-prefix=CHECK-DEFAULT %s |
3 | | -// RUN: %clang -target powerpc64le-unknown-linux-gnu -S -emit-llvm %s -o - | FileCheck --check-prefix=CHECK-DEFAULT %s |
4 | | -// RUN: %clang -target powerpc64-unknown-linux-gnu -S -emit-llvm %s -o - | FileCheck --check-prefix=CHECK-DEFAULT %s |
| 1 | +// RUN: %clang --target=powerpc64-unknown-aix -S -emit-llvm %s -o - | FileCheck --check-prefix=CHECK-DEFAULT %s |
| 2 | +// RUN: %clang --target=powerpc-unknown-aix -S -emit-llvm %s -o - | FileCheck --check-prefix=CHECK-DEFAULT %s |
| 3 | +// RUN: %clang --target=powerpc64le-unknown-linux-gnu -S -emit-llvm %s -o - | FileCheck --check-prefix=CHECK-DEFAULT %s |
| 4 | +// RUN: %clang --target=powerpc64-unknown-linux-gnu -S -emit-llvm %s -o - | FileCheck --check-prefix=CHECK-DEFAULT %s |
5 | 5 |
|
6 | | -// RUN: %clang -target powerpc64-unknown-aix -maix-small-local-exec-tls -S -emit-llvm \ |
| 6 | +// RUN: %clang --target=powerpc64-unknown-aix -maix-small-local-exec-tls -S -emit-llvm \ |
7 | 7 | // RUN: %s -o - | FileCheck %s --check-prefix=CHECK-AIX_SMALL_LOCALEXEC_TLS |
8 | 8 |
|
9 | | -// RUN: %clang -target powerpc64-unknown-aix -maix-small-local-dynamic-tls -S -emit-llvm \ |
| 9 | +// RUN: %clang --target=powerpc64-unknown-aix -maix-small-local-dynamic-tls -S -emit-llvm \ |
10 | 10 | // RUN: %s -o - | FileCheck %s --check-prefix=CHECK-AIX_SMALL_LOCALDYNAMIC_TLS |
11 | 11 |
|
12 | | -// RUN: not %clang -target powerpc-unknown-aix -maix-small-local-exec-tls \ |
| 12 | +// RUN: not %clang --target=powerpc-unknown-aix -maix-small-local-exec-tls \ |
13 | 13 | // RUN: -fsyntax-only %s 2>&1 | FileCheck --check-prefix=CHECK-UNSUPPORTED-AIX32 %s |
14 | | -// RUN: not %clang -target powerpc64le-unknown-linux-gnu -maix-small-local-exec-tls \ |
| 14 | +// RUN: not %clang --target=powerpc64le-unknown-linux-gnu -maix-small-local-exec-tls \ |
15 | 15 | // RUN: -fsyntax-only %s 2>&1 | FileCheck --check-prefix=CHECK-UNSUPPORTED-LINUX %s |
16 | | -// RUN: not %clang -target powerpc64-unknown-linux-gnu -maix-small-local-exec-tls \ |
| 16 | +// RUN: not %clang --target=powerpc64-unknown-linux-gnu -maix-small-local-exec-tls \ |
17 | 17 | // RUN: -fsyntax-only %s 2>&1 | FileCheck --check-prefix=CHECK-UNSUPPORTED-LINUX %s |
18 | | -// RUN: not %clang -target powerpc64-unknown-aix -maix-small-local-exec-tls \ |
| 18 | +// RUN: not %clang --target=powerpc64-unknown-aix -maix-small-local-exec-tls \ |
19 | 19 | // RUN: -fsyntax-only -fno-data-sections %s 2>&1 | \ |
20 | 20 | // RUN: FileCheck --check-prefix=CHECK-UNSUPPORTED-NO-DATASEC %s |
21 | | -// RUN: not %clang -target powerpc64-unknown-linux-gnu -maix-small-local-exec-tls \ |
| 21 | +// RUN: not %clang --target=powerpc64-unknown-linux-gnu -maix-small-local-exec-tls \ |
22 | 22 | // RUN: -fsyntax-only -fno-data-sections %s 2>&1 | \ |
23 | 23 | // RUN: FileCheck --check-prefix=CHECK-UNSUPPORTED-NO-DATASEC %s |
24 | 24 |
|
25 | | -// RUN: not %clang -target powerpc-unknown-aix -maix-small-local-dynamic-tls \ |
| 25 | +// RUN: not %clang --target=powerpc-unknown-aix -maix-small-local-dynamic-tls \ |
26 | 26 | // RUN: -fsyntax-only %s 2>&1 | FileCheck --check-prefix=CHECK-UNSUPPORTED-AIX32 %s |
27 | | -// RUN: not %clang -target powerpc64le-unknown-linux-gnu -maix-small-local-dynamic-tls \ |
| 27 | +// RUN: not %clang --target=powerpc64le-unknown-linux-gnu -maix-small-local-dynamic-tls \ |
28 | 28 | // RUN: -fsyntax-only %s 2>&1 | FileCheck --check-prefix=CHECK-UNSUPPORTED-LINUX %s |
29 | | -// RUN: not %clang -target powerpc64-unknown-linux-gnu -maix-small-local-dynamic-tls \ |
| 29 | +// RUN: not %clang --target=powerpc64-unknown-linux-gnu -maix-small-local-dynamic-tls \ |
30 | 30 | // RUN: -fsyntax-only %s 2>&1 | FileCheck --check-prefix=CHECK-UNSUPPORTED-LINUX %s |
31 | | -// RUN: not %clang -target powerpc64-unknown-aix -maix-small-local-dynamic-tls \ |
| 31 | +// RUN: not %clang --target=powerpc64-unknown-aix -maix-small-local-dynamic-tls \ |
32 | 32 | // RUN: -fsyntax-only -fno-data-sections %s 2>&1 | \ |
33 | 33 | // RUN: FileCheck --check-prefix=CHECK-UNSUPPORTED-NO-DATASEC %s |
34 | | -// RUN: not %clang -target powerpc64-unknown-linux-gnu -maix-small-local-dynamic-tls \ |
| 34 | +// RUN: not %clang --target=powerpc64-unknown-linux-gnu -maix-small-local-dynamic-tls \ |
35 | 35 | // RUN: -fsyntax-only -fno-data-sections %s 2>&1 | \ |
36 | 36 | // RUN: FileCheck --check-prefix=CHECK-UNSUPPORTED-NO-DATASEC %s |
37 | 37 |
|
|
0 commit comments