Patch by Rafael Stahl! Differential Revision: https://reviews.llvm.org/D46115 llvm-svn: 331762
14 lines
155 B
C++
14 lines
155 B
C++
extern void f() __attribute__((const));
|
|
|
|
struct S {
|
|
struct {
|
|
int a __attribute__((packed));
|
|
};
|
|
};
|
|
|
|
void stmt() {
|
|
#pragma unroll
|
|
for (;;)
|
|
;
|
|
}
|