repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
- Make BranchProbability constructor public.
[llvm/stm8.git]
/
test
/
FrontendC
/
2007-07-29-RestrictPtrArg.c
blob
5925d972b269e5bacc3e655d83496e8d67432c42
1
// RUN: %llvmgcc -S %s -o - | grep noalias
2
3
void
foo
(
int
*
__restrict myptr1
,
int
*
myptr2
) {
4
myptr1
[
0
] =
0
;
5
myptr2
[
0
] =
0
;
6
}