repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ARM] Cortex-M4 schedule additions
[llvm-complete.git]
/
test
/
tools
/
opt-viewer
/
Inputs
/
suppress
/
s.swift
blob
a1b17a97945040be9184a626a95f89766da91b87
1
import Swift
2
3
var s: [Int] = [1, 2, 3, 4]
4
5
func f() {
6
for i in 0..<4 {
7
print(s[i])
8
}
9
}
10
11
f()