diff options
Diffstat (limited to 'test/Import/attr/Inputs/S.cpp')
-rw-r--r-- | test/Import/attr/Inputs/S.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/Import/attr/Inputs/S.cpp b/test/Import/attr/Inputs/S.cpp new file mode 100644 index 0000000000000..28d70c544a7ca --- /dev/null +++ b/test/Import/attr/Inputs/S.cpp @@ -0,0 +1,13 @@ +extern void f() __attribute__((const)); + +struct S { + struct { + int a __attribute__((packed)); + }; +}; + +void stmt() { +#pragma unroll + for (;;) + ; +} |