xref: /aosp_15_r20/external/clang/test/CodeGen/2007-10-02-VolatileArray.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -emit-llvm %s -o - | grep volatile
2 // PR1647
3 
foo(volatile int * p)4 void foo(volatile int *p)
5 {
6 p[0] = 0;
7 }
8