-
Notifications
You must be signed in to change notification settings - Fork 670
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(frontend,cache): Fix warning of read-only return value of .asTypeOf
The chisel3 has marked retrun value of .asTypeOf as "deprecated read-only" in #4198: ### [W008] Return values of asTypeOf will soon be read-only This warning indicates that the result of a call to `.asTypeOf(_)` is being used as the destination for a connection. It can be fixed by instantiating a wire. Fix the usage of asTypeOf in cache/frontent as suggested by the warning. Signed-off-by: Jiuyue Ma <[email protected]>
- Loading branch information
1 parent
fad7803
commit aadcdaf
Showing
3 changed files
with
18 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters