mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 19:45:40 -04:00

All 130+ f_Group flags that take an argument allow it after a '=', except for fdebug-complation-dir. Add a Joined<> alias so that it behaves consistently with all the other f_Group flags. (Keep the old Separate flag for backwards compat.)
33 lines
1.0 KiB
C
33 lines
1.0 KiB
C
// RUN: %clang -target x86_64-apple-macosx -fembed-bitcode=all -c %s -o /dev/null -### 2>&1 \
|
|
// RUN: | FileCheck -check-prefix CHECK-X64 %s
|
|
|
|
// CHECK-X64: "-cc1"
|
|
|
|
// CHECK-X64: "-cc1"
|
|
// CHECK-X64-NOT: "-fdebug-compilation-dir
|
|
|
|
// RUN: %clang -target armv7-apple-ios -fembed-bitcode=all -c %s -o /dev/null -### 2>&1 \
|
|
// RUN: | FileCheck -check-prefix CHECK-ARM %s
|
|
|
|
// CHECK-ARM: "-cc1"
|
|
|
|
// CHECK-ARM: "-cc1"
|
|
// CHECK-ARM: "-target-abi"
|
|
// CHECK-ARM: "apcs-gnu"
|
|
// CHECK-ARM-NOT: "-fdebug-compilation-dir
|
|
|
|
// RUN: %clang -target arm64-apple-ios -fembed-bitcode=all -c %s -o /dev/null -### 2>&1 \
|
|
// RUN: | FileCheck -check-prefix CHECK-AARCH64 %s
|
|
|
|
// CHECK-AARCH64: "-cc1"
|
|
|
|
// CHECK-AARCH64: "-cc1"
|
|
// CHECK-AARCH64: "-target-abi"
|
|
// CHECK-AARCH64: "darwinpcs"
|
|
// CHECK-AARCH64-NOT: "-fdebug-compilation-dir
|
|
|
|
// RUN: %clang -target hexagon-unknown-elf -ffixed-r19 -fembed-bitcode=all -c %s -### 2>&1 \
|
|
// RUN: | FileCheck --check-prefix=CHECK-HEXAGON %s
|
|
// CHECK-HEXAGON: "-target-feature"
|
|
// CHECK-HEXAGON: "+reserved-r19"
|