Skip to content

Commit

Permalink
Exception relocation debug output removed.
Browse files Browse the repository at this point in the history
  • Loading branch information
John Detter committed Sep 27, 2016
1 parent 304995f commit ec67da0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
8 changes: 0 additions & 8 deletions dyninstAPI/src/Relocation/Transformers/Movement-analysis.C
Expand Up @@ -596,14 +596,6 @@ bool PCSensitiveTransformer::exceptionSensitive(Address a, const block_instance
// Amusingly, existence is sufficient for us.
bool result = symtab->findException(eBlock, o);

// fprintf(stderr, "Offset: 0x%x Address: 0x%x\n", o, a);
if(result)
{
// fprintf(stderr, ">>>>>> Sensitive\n");
} else {
// fprintf(stderr, "\tNot sensitive\n");
}

return result;
}

Expand Down
3 changes: 0 additions & 3 deletions symtabAPI/src/Symtab-lookup.C
Expand Up @@ -500,9 +500,6 @@ bool Symtab::findException(ExceptionBlock &excp, Offset addr)
{
for (unsigned i=0; i<excpBlocks.size(); i++)
{
// fprintf(stderr, "Checking exception block: 0x%lx 0x%lx\n",
// excpBlocks[i]->tryStart(), excpBlocks[i]->tryEnd());

if (excpBlocks[i]->contains(addr))
{
excp = *(excpBlocks[i]);
Expand Down

0 comments on commit ec67da0

Please sign in to comment.