[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Driver / aarch64-outliner.c
blobc5d28d121513f2dd19654987ad9be2e5b950f226
1 // RUN: %clang --target=aarch64 -moutline -S %s -### 2>&1 | FileCheck %s -check-prefix=ON
2 // RUN: %clang --target=aarch64_be -moutline -S %s -### 2>&1 | FileCheck %s -check-prefix=ON
3 // ON: "-mllvm" "-enable-machine-outliner"
4 // RUN: %clang --target=aarch64 -moutline -mno-outline -S %s -### 2>&1 | FileCheck %s -check-prefix=OFF
5 // RUN: %clang --target=aarch64_be -moutline -mno-outline -S %s -### 2>&1 | FileCheck %s -check-prefix=OFF
6 // OFF: "-mllvm" "-enable-machine-outliner=never"
7 // RUN: %clang --target=x86_64 -moutline -S %s -### 2>&1 | FileCheck %s -check-prefix=WARN
8 // WARN: warning: 'x86_64' does not support '-moutline'; flag ignored [-Woption-ignored]
9 // WARN-NOT: "-mllvm" "-enable-machine-outliner"