repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
When removing a function from the function set and adding it to deferred, we
[llvm.git]
/
test
/
FrontendC++
/
2007-07-29-RestrictPtrArg.cpp
blob
2e85abdf25ea391df80f0cad86ec7b2892ae0550
1
// RUN: %llvmgxx -S %s -o - | grep noalias
2
3
void
foo
(
int
*
__restrict myptr1
,
int
*
myptr2
) {
4
myptr1
[
0
] =
0
;
5
myptr2
[
0
] =
0
;
6
}