mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-21 19:20:28 +00:00
6 lines
151 B
C
6 lines
151 B
C
|
// RUN: %llvmgxx -c -emit-llvm %s -o - | llvm-dis | grep noalias
|
||
|
|
||
|
void foo(int * __restrict myptr1, int * myptr2) {
|
||
|
myptr1[0] = 0;
|
||
|
myptr2[0] = 0;
|
||
|
}
|