From 48986ccdebdb6f954b4b95bc05e7d99b130f7088 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Sun, 21 Feb 2021 21:56:43 -0500 Subject: [PATCH] Remove VL_TIME_I, rarely/never used and too little precision. --- docs/TODO | 2 -- include/verilated.h | 1 - 2 files changed, 3 deletions(-) diff --git a/docs/TODO b/docs/TODO index ce1b15083..341d51d42 100644 --- a/docs/TODO +++ b/docs/TODO @@ -96,8 +96,6 @@ Don't merge if any combining would form circ logic (out goes back to in) ** Multiple assignments each bit can become single assign with concat Make sure a SEL of a CONCAT can get the single bit back. -** Usually blocks/values - Enable only after certain time, so VL_TIME_I(32) > 0x1e gets eliminated out ** Better ordering of a<=b, b<=c, put all refs to 'b' next to each other to optimize caching ** I-cache packing improvements (what/how?) ** Data cache organization (order of vars in class) diff --git a/include/verilated.h b/include/verilated.h index 657313e0f..c81241df8 100644 --- a/include/verilated.h +++ b/include/verilated.h @@ -857,7 +857,6 @@ inline vluint64_t vl_time_stamp64() { return static_cast(sc_time_sta # endif #endif -#define VL_TIME_I() (static_cast(vl_time_stamp64())) #define VL_TIME_Q() (static_cast(vl_time_stamp64())) #define VL_TIME_D() (static_cast(vl_time_stamp64()))