repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2007-07-29-RestrictPtrArg.c
blob
b6d61a714a69839e749937e43278882e73e0c421
1
// RUN: %clang_cc1 -emit-llvm %s -o - | grep noalias
2
3
void
foo
(
int
*
__restrict myptr1
,
int
*
myptr2
) {
4
myptr1
[
0
] =
0
;
5
myptr2
[
0
] =
0
;
6
}