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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
Analysis
/
Inputs
/
no-store-suppression.h
blob
6f69b6dad2a1a54764d7e24a36d5ba9a55183f0e
1
#pragma clang system_header
2
3
namespace
std
{
4
class
istream
{
5
public
:
6
bool
is_eof
();
7
char
get_char
();
8
};
9
10
istream
&
operator
>>(
istream
&
is
,
char
&
c
) {
11
if
(
is
.
is_eof
())
12
return
;
13
c
=
is
.
get_char
();
14
}
15
16
extern
istream cin
;
17
};