You've already forked linux-packaging-mono
Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
parent
8016999e4d
commit
64ac736ec5
5
external/llvm/test/tools/llvm-cov/Inputs/sources_specified/abs.h
vendored
Normal file
5
external/llvm/test/tools/llvm-cov/Inputs/sources_specified/abs.h
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
int abs(int x) {
|
||||
if (x < 0)
|
||||
return -x;
|
||||
return x;
|
||||
}
|
3
external/llvm/test/tools/llvm-cov/Inputs/sources_specified/extra/dec.h
vendored
Normal file
3
external/llvm/test/tools/llvm-cov/Inputs/sources_specified/extra/dec.h
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
int dec(int x) {
|
||||
return x + 1;
|
||||
}
|
3
external/llvm/test/tools/llvm-cov/Inputs/sources_specified/extra/inc.h
vendored
Normal file
3
external/llvm/test/tools/llvm-cov/Inputs/sources_specified/extra/inc.h
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
int inc(int x) {
|
||||
return x + 1;
|
||||
}
|
9
external/llvm/test/tools/llvm-cov/Inputs/sources_specified/main.cc
vendored
Normal file
9
external/llvm/test/tools/llvm-cov/Inputs/sources_specified/main.cc
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
#include "abs.h"
|
||||
#include "extra/dec.h"
|
||||
#include "extra/inc.h"
|
||||
|
||||
int main() {
|
||||
int x = 0;
|
||||
inc(x);
|
||||
return abs(x);
|
||||
}
|
BIN
external/llvm/test/tools/llvm-cov/Inputs/sources_specified/main.covmapping
vendored
Normal file
BIN
external/llvm/test/tools/llvm-cov/Inputs/sources_specified/main.covmapping
vendored
Normal file
Binary file not shown.
BIN
external/llvm/test/tools/llvm-cov/Inputs/sources_specified/main.profdata
vendored
Normal file
BIN
external/llvm/test/tools/llvm-cov/Inputs/sources_specified/main.profdata
vendored
Normal file
Binary file not shown.
Reference in New Issue
Block a user