brintos

brintos / llvm-project-archived public Read only

0
0
Text · 716 B · c5d28d1 Raw
10 lines · c
1// RUN: %clang --target=aarch64 -moutline -S %s -### 2>&1 | FileCheck %s -check-prefix=ON2// RUN: %clang --target=aarch64_be -moutline -S %s -### 2>&1 | FileCheck %s -check-prefix=ON3// ON: "-mllvm" "-enable-machine-outliner"4// RUN: %clang --target=aarch64 -moutline -mno-outline -S %s -### 2>&1 | FileCheck %s -check-prefix=OFF5// RUN: %clang --target=aarch64_be -moutline -mno-outline -S %s -### 2>&1 | FileCheck %s -check-prefix=OFF6// OFF: "-mllvm" "-enable-machine-outliner=never"7// RUN: %clang --target=x86_64 -moutline -S %s -### 2>&1 | FileCheck %s -check-prefix=WARN8// WARN: warning: 'x86_64' does not support '-moutline'; flag ignored [-Woption-ignored]9// WARN-NOT: "-mllvm" "-enable-machine-outliner"10