[InstCombine] Signed saturation patterns
[llvm-core.git] / test / tools / llvm-cov / Inputs / sources_specified / abs.h
blobf13c5177c5856a079ee9a146f4e4691dad0ac58f
1 int abs(int x) {
2 if (x < 0)
3 return -x;
4 return x;