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
Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git]
/
llvm
/
test
/
tools
/
opt-viewer
/
Inputs
/
unicode-function-name
/
s.swift
blob
6347cde51e49ab2c677acf7526f946a2f13f2118
1
infix operator •: AdditionPrecedence
2
3
func • (a: Int, b: Int) -> Int {
4
return a * b
5
}
6
7
@inline(never)
8
func g(a: Int) -> Int{
9
return a + 1
10
}
11
12
let i = g(a: 1 • 2)