From f460cec511d7139317d0c9c994f6ba4504718f40 Mon Sep 17 00:00:00 2001 From: Jiuyang Liu Date: Thu, 6 Jul 2023 19:42:54 +0800 Subject: [PATCH] Remove NotStrictInferReset compile option --- src/main/scala/util/CompileOptions.scala | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/main/scala/util/CompileOptions.scala diff --git a/src/main/scala/util/CompileOptions.scala b/src/main/scala/util/CompileOptions.scala deleted file mode 100644 index 50eaba50995..00000000000 --- a/src/main/scala/util/CompileOptions.scala +++ /dev/null @@ -1,10 +0,0 @@ -// See LICENSE.SiFive for license details. - -package freechips.rocketchip.util - -import chisel3.ExplicitCompileOptions.NotStrict - -object CompileOptions { - /** Compatibility mode semantics except Module implicit reset should be inferred instead of Bool */ - implicit val NotStrictInferReset = NotStrict.copy(inferModuleReset = true) -}