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-08-01-RestrictMethod.cpp
blob
feefaa1759c5660b04818ef4c2363e141e7ff3a1
1
// RUN: %llvmgxx -S %s -o - | grep noalias
2
3
4
class
foo
{
5
int
member
[
4
];
6
7
void
bar
(
int
*
a
);
8
9
};
10
11
void
foo
::
bar
(
int
*
a
)
__restrict
{
12
member
[
3
] = *
a
;
13
}