mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
10 lines
168 B
C
10 lines
168 B
C
// 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;
|
|
}
|