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
This should always be signed chars, so use int8_t. This fixes a miscompile when
[llvm/stm8.git]
/
test
/
FrontendC++
/
2007-07-29-RestrictRefArg.cpp
blob
128ddb3ab59273095af56f37382806c0968be4b5
1
// RUN: %llvmgxx -S %s -o - | grep noalias
2
3
void
foo
(
int
&
__restrict myptr1
,
int
&
myptr2
) {
4
myptr1
=
0
;
5
myptr2
=
0
;
6
}