blob: d49e75e0254101c4a84ee93aa0d0ecba88639123 [file] [log] [blame]
// RUN: %llvmgcc -O3 -S -o - %s | grep {volatile store}
// PR1352
struct foo {
int x;
};
void copy(volatile struct foo *p, struct foo *q) {
*p = *q;
}