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
[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git]
/
llvm
/
test
/
tools
/
llvm-cov
/
Inputs
/
sources_specified
/
abs.h
blob
f13c5177c5856a079ee9a146f4e4691dad0ac58f
1
int
abs
(
int
x
) {
2
if
(
x
<
0
)
3
return
-
x
;
4
return
x
;
5
}