Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions codeCoverage/code_coverage.C
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ bool insertBBEntry(BPatch_binaryEdit* appBin, BPatch_function* curFunc, char con
char const* moduleName, BPatch_function* instBBIncFunc, BPatch_function* registerBB,
int* bbIndex, BPatch_Vector<BPatch_snippet*>* registerCalls) {
BPatch_flowGraph* appCFG = curFunc->getCFG();
BPatch_Set<BPatch_basicBlock*> allBlocks;
BPatch_Set<BPatch_basicBlock*>::iterator iter;
std::set<BPatch_basicBlock*> allBlocks;
std::set<BPatch_basicBlock*>::iterator iter;
if(!appCFG) {
cerr << "Failed to find CFG for function " << funcName << endl;
return EXIT_FAILURE;
Expand Down
2 changes: 1 addition & 1 deletion instrumentMemoryAccess/instrumenting_memory_access.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ bool instrumentMemoryAccesses(BPatch_addressSpace* app) {
BPatch_image* appImage = app->getImage();

// We're interested in loads and stores
BPatch_Set<BPatch_opCode> axs;
std::set<BPatch_opCode> axs;
axs.insert(BPatch_opLoad);
axs.insert(BPatch_opStore);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ int main(int argc, char* argv[]) {
}();

BPatch_flowGraph* cfg = function->getCFG();
BPatch_Set<BPatch_basicBlock*> blocks;
std::set<BPatch_basicBlock*> blocks;
cfg->getAllBasicBlocks(blocks);

Dyninst::AssignmentConverter converter(true, false);
Expand Down
Loading