1 // RUN: %clang -target i386 %s -fpatchable-function-entry=1 -c -### 2>&1 | FileCheck %s 2 // RUN: %clang -target x86_64 %s -fpatchable-function-entry=1 -c -### 2>&1 | FileCheck %s 3 // RUN: %clang -target aarch64 %s -fpatchable-function-entry=1 -c -### 2>&1 | FileCheck %s 4 // RUN: %clang -target aarch64 %s -fpatchable-function-entry=1,0 -c -### 2>&1 | FileCheck %s 5 // CHECK: "-fpatchable-function-entry=1" 6 7 // RUN: not %clang -target ppc64 -fsyntax-only %s -fpatchable-function-entry=1 2>&1 | FileCheck --check-prefix=TARGET %s 8 // TARGET: error: unsupported option '-fpatchable-function-entry=1' for target 'ppc64' 9 10 // RUN: not %clang -target i386 -fsyntax-only %s -fpatchable-function-entry=1,1 2>&1 | FileCheck --check-prefix=NONZERO %s 11 // NONZERO: error: the second argument of '-fpatchable-function-entry' must be 0 or omitted 12 13 // RUN: not %clang -target x86_64 -fsyntax-only %s -fpatchable-function-entry=1,0, 2>&1 | FileCheck --check-prefix=EXCESS %s 14 // EXCESS: error: invalid argument '1,0,' to -fpatchable-function-entry= 15 16 // RUN: not %clang -target aarch64-linux -fsyntax-only %s -fxray-instrument -fpatchable-function-entry=1 2>&1 | FileCheck --check-prefix=XRAY %s 17 // XRAY: error: invalid argument '-fxray-instrument' not allowed with '-fpatchable-function-entry=' 18