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
[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
2007-07-29-RestrictRefArg.cpp
blob
aa9f48bb0abc600ab2fd7cfe3f423532e27fc28f
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
;
6
myptr2
=
0
;
7
}