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