mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 01:30:47 -04:00
7 lines
137 B
C++
7 lines
137 B
C++
// RUN: %llvmgxx -S %s -o - | grep {volatile load}
|
|
// PR3320
|
|
|
|
void test(volatile int *a) {
|
|
// should be a volatile load.
|
|
a[0];
|
|
}
|