[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Sema / patchable-function-entry-attr.cpp
blob3dd0504987306e9986ab6f7160eb0fd367171db1
1 // RUN: %clang_cc1 -triple aarch64 -fsyntax-only -verify=silence %s
2 // RUN: %clang_cc1 -triple aarch64_be -fsyntax-only -verify=silence %s
3 // RUN: %clang_cc1 -triple i386 -fsyntax-only -verify=silence %s
4 // RUN: %clang_cc1 -triple x86_64 -fsyntax-only -verify=silence %s
5 // RUN: %clang_cc1 -triple riscv32 -fsyntax-only -verify=silence %s
6 // RUN: %clang_cc1 -triple riscv64 -fsyntax-only -verify=silence %s
7 // RUN: %clang_cc1 -triple ppc64le -fsyntax-only -verify %s
9 // silence-no-diagnostics
11 // expected-warning@+1 {{unknown attribute 'patchable_function_entry' ignored}}
12 [[gnu::patchable_function_entry(0)]] void f();