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

This feature is generic. Make it applicable for AArch64 and X86 because the backend has only implemented NOP insertion for AArch64 and X86. Reviewed By: nickdesaulniers, aaron.ballman Differential Revision: https://reviews.llvm.org/D72221
10 lines
415 B
C++
10 lines
415 B
C++
// RUN: %clang_cc1 -triple aarch64 -fsyntax-only -verify=silence %s
|
|
// RUN: %clang_cc1 -triple i386 -fsyntax-only -verify=silence %s
|
|
// RUN: %clang_cc1 -triple x86_64 -fsyntax-only -verify=silence %s
|
|
// RUN: %clang_cc1 -triple ppc64le -fsyntax-only -verify %s
|
|
|
|
// silence-no-diagnostics
|
|
|
|
// expected-warning@+1 {{unknown attribute 'patchable_function_entry' ignored}}
|
|
[[gnu::patchable_function_entry(0)]] void f();
|