mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
cd424fc6c2
llvm-svn: 42570
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;
|
|
}
|