summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/base/misc.hh9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/base/misc.hh b/src/base/misc.hh
index 1509ea2d2..6b0025c34 100644
--- a/src/base/misc.hh
+++ b/src/base/misc.hh
@@ -113,13 +113,4 @@ __warn(const char *func, const char *file, int line, const std::string &format,
} \
} while (0)
-//
-// assert() that prints out the current cycle
-//
-#define m5_assert(TEST) do { \
- if (!(TEST)) \
- ccprintf(std::cerr, "Assertion failure, curTick = %d\n", curTick); \
- assert(TEST); \
-} while (0)
-
#endif // __MISC_HH__