mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 10:46:07 +00:00
7 lines
240 B
C
7 lines
240 B
C
![]() |
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
||
|
|
||
|
#define __pso __attribute__((preserve_static_offset))
|
||
|
|
||
|
struct foo { int a; } __pso; // expected-warning{{unknown attribute}}
|
||
|
union quux { int a; } __pso; // expected-warning{{unknown attribute}}
|