Skip to content

Commit

Permalink
i#2006 drcachesim generalization: make histogram.h and reuse_distance…
Browse files Browse the repository at this point in the history
….h portable (#2810)

Removes relative paths from the histogram.h and reuse_distance.h headers to make it easier to
extend these tools in third-party code.

Issue: #2006
  • Loading branch information
snehasish authored and derekbruening committed Jan 18, 2018
1 parent 1576ae4 commit 3148ec7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions clients/drcachesim/tools/histogram.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@

#include <unordered_map>
#include <string>
#include "../analysis_tool.h"
#include "../common/memref.h"
#include "analysis_tool.h"
#include "memref.h"

class histogram_t : public analysis_tool_t
{
Expand Down
4 changes: 2 additions & 2 deletions clients/drcachesim/tools/reuse_distance.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
#include <string>
#include <assert.h>
#include <iostream>
#include "../analysis_tool.h"
#include "../common/memref.h"
#include "analysis_tool.h"
#include "memref.h"

// We see noticeable overhead in release build with an if() that directly
// checks knob_verbose, so for debug-only uses we turn it into something the
Expand Down

0 comments on commit 3148ec7

Please sign in to comment.