From 5df5d4d6ab047c4fdf1ef00e15b6316d0249b3ff Mon Sep 17 00:00:00 2001 From: Snehasish Kumar Date: Thu, 18 Jan 2018 11:45:06 -0800 Subject: [PATCH] Fix includes for histogram.h and reuse_distance.h --- clients/drcachesim/tools/histogram.h | 4 ++-- clients/drcachesim/tools/reuse_distance.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/clients/drcachesim/tools/histogram.h b/clients/drcachesim/tools/histogram.h index 2c32b8c82ce..82f91db0ca7 100644 --- a/clients/drcachesim/tools/histogram.h +++ b/clients/drcachesim/tools/histogram.h @@ -38,8 +38,8 @@ #include #include -#include "../analysis_tool.h" -#include "../common/memref.h" +#include "analysis_tool.h" +#include "memref.h" class histogram_t : public analysis_tool_t { diff --git a/clients/drcachesim/tools/reuse_distance.h b/clients/drcachesim/tools/reuse_distance.h index bda6279a7f8..51eccb89313 100644 --- a/clients/drcachesim/tools/reuse_distance.h +++ b/clients/drcachesim/tools/reuse_distance.h @@ -40,8 +40,8 @@ #include #include #include -#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