bolt/deps/llvm-18.1.8/clang/test/SemaCXX/attr-cfi-canonical-jump-table.cpp

12 lines
391 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 -triple x86_64-unknown-linux -fsyntax-only -verify %s
__attribute__((cfi_canonical_jump_table)) void fdecl();
__attribute__((cfi_canonical_jump_table)) void f() {}
struct S {
__attribute__((cfi_canonical_jump_table)) void f() {}
};
__attribute__((cfi_canonical_jump_table)) int i; // expected-error {{'cfi_canonical_jump_table' attribute only applies to functions}}