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
[AMDGPU] Add True16 register classes.
[llvm-project.git]
/
lldb
/
test
/
API
/
benchmarks
/
libcxxmap
/
main.cpp
blob
45efb26b6b04050fc42498e17fb10514a6d20a31
1
#include <map>
2
3
int
main
()
4
{
5
std
::
map
<
int
,
int
>
map
;
6
for
(
int
i
=
0
;
7
i
<
1500
;
8
i
++)
9
map
[
i
] =
i
;
10
return
map
.
size
();
// break here
11
}