Added Tool as Dependency to tests & fixed warnings

Summary: Fixes http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-bootstrap-msan/builds/14002 and http://lab.llvm.org:8011/builders/lld-x86_64-darwin13/builds/35392/steps/build_Lld/logs/stdio

Subscribers: mgorny, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D65843

llvm-svn: 368117
This commit is contained in:
Diego Trevino Ferrer 2019-08-07 01:51:56 +00:00
parent 79a3c73c1c
commit 2453ed36cb
5 changed files with 8 additions and 7 deletions

View File

@ -89,6 +89,7 @@ set(LLVM_TEST_DEPENDS
llvm-rc llvm-rc
llvm-readobj llvm-readobj
llvm-readelf llvm-readelf
llvm-reduce
llvm-rtdyld llvm-rtdyld
llvm-size llvm-size
llvm-split llvm-split

View File

@ -85,7 +85,7 @@ static bool increaseGranularity(std::vector<Chunk> &Chunks) {
if (C.end - C.begin == 0) if (C.end - C.begin == 0)
NewChunks.push_back(C); NewChunks.push_back(C);
else { else {
int Half = (C.begin + C.end) / 2; unsigned Half = (C.begin + C.end) / 2;
NewChunks.push_back({C.begin, Half}); NewChunks.push_back({C.begin, Half});
NewChunks.push_back({Half + 1, C.end}); NewChunks.push_back({Half + 1, C.end});
SplitOne = true; SplitOne = true;
@ -100,7 +100,7 @@ static bool increaseGranularity(std::vector<Chunk> &Chunks) {
} }
void llvm::runDeltaPass( void llvm::runDeltaPass(
TestRunner &Test, int Targets, TestRunner &Test, unsigned Targets,
std::function<std::unique_ptr<Module>(std::vector<Chunk>, Module *)> std::function<std::unique_ptr<Module>(std::vector<Chunk>, Module *)>
ExtractChunksFromModule) { ExtractChunksFromModule) {
if (!Targets) if (!Targets)

View File

@ -28,8 +28,8 @@
using namespace llvm; using namespace llvm;
struct Chunk { struct Chunk {
int begin; unsigned begin;
int end; unsigned end;
/// Operator when populating CurrentChunks in Generic Delta Pass /// Operator when populating CurrentChunks in Generic Delta Pass
friend bool operator!=(const Chunk &C1, const Chunk &C2) { friend bool operator!=(const Chunk &C1, const Chunk &C2) {
@ -66,7 +66,7 @@ namespace llvm {
/// Other implementations of the Delta Debugging algorithm can also be found in /// Other implementations of the Delta Debugging algorithm can also be found in
/// the CReduce, Delta, and Lithium projects. /// the CReduce, Delta, and Lithium projects.
void runDeltaPass( void runDeltaPass(
TestRunner &Test, int Targets, TestRunner &Test, unsigned Targets,
std::function<std::unique_ptr<Module>(std::vector<Chunk>, Module *)> std::function<std::unique_ptr<Module>(std::vector<Chunk>, Module *)>
ExtractChunksFromModule); ExtractChunksFromModule);

View File

@ -23,7 +23,7 @@ extractFunctionsFromModule(std::vector<Chunk> ChunksToKeep, Module *Program) {
// Get functions inside desired chunks // Get functions inside desired chunks
std::set<Function *> FuncsToKeep; std::set<Function *> FuncsToKeep;
int I = 0, FunctionCount = 1; unsigned I = 0, FunctionCount = 1;
for (auto &F : *Clone) { for (auto &F : *Clone) {
if (!F.isDeclaration() && I < ChunksToKeep.size()) { if (!F.isDeclaration() && I < ChunksToKeep.size()) {
if (FunctionCount >= ChunksToKeep[I].begin && if (FunctionCount >= ChunksToKeep[I].begin &&

View File

@ -21,7 +21,7 @@ extractGVsFromModule(std::vector<Chunk> ChunksToKeep, Module *Program) {
// Get GVs inside desired chunks // Get GVs inside desired chunks
std::set<GlobalVariable *> GVsToKeep; std::set<GlobalVariable *> GVsToKeep;
int I = 0, GVCount = 1; unsigned I = 0, GVCount = 1;
for (auto &GV : Clone->globals()) { for (auto &GV : Clone->globals()) {
if (GV.hasInitializer() && I < ChunksToKeep.size()) { if (GV.hasInitializer() && I < ChunksToKeep.size()) {
if (GVCount >= ChunksToKeep[I].begin && GVCount <= ChunksToKeep[I].end) if (GVCount >= ChunksToKeep[I].begin && GVCount <= ChunksToKeep[I].end)