Sign in
llvm
/
llvm-project
/
1c229c0472edfd59ce61ba063a93517df609ceb4
/
.
/
llvm
/
test
/
FrontendC++
/
2007-07-29-RestrictPtrArg.cpp
blob: 2e85abdf25ea391df80f0cad86ec7b2892ae0550 [
file
]
// RUN: %llvmgxx -S %s -o - | grep noalias
void
foo
(
int
*
__restrict myptr1
,
int
*
myptr2
)
{
myptr1
[
0
]
=
0
;
myptr2
[
0
]
=
0
;
}