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
/
CodeGenCXX
/
2007-07-29-RestrictPtrArg.cpp
blob
d7c96f562acc7671bf83c7c1608ef2122f90efbd
1
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2
3
void
foo
(
int
*
__restrict myptr1
,
int
*
myptr2
) {
4
// CHECK: noalias
5
myptr1
[
0
] =
0
;
6
myptr2
[
0
] =
0
;
7
}