mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
8 lines
95 B
C
8 lines
95 B
C
|
// RUN: %llvmgcc -S %s -o - | grep volatile
|
||
|
// PR1647
|
||
|
|
||
|
void foo(volatile int *p)
|
||
|
{
|
||
|
p[0] = 0;
|
||
|
}
|