You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.246
Former-commit-id: 0c7ce5b1a7851e13f22acfd379b7f9fb304e4833
This commit is contained in:
parent
a7724cd563
commit
279aa8f685
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