Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sv2v
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
sv2v
Commits
789afd1b
Commit
789afd1b
authored
Jul 09, 2021
by
Zachary Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
error on size cast with non-integer size
parent
1f03c64e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
src/Convert/Cast.hs
+2
-1
test/error/size_cast_x.sv
+4
-0
No files found.
src/Convert/Cast.hs
View file @
789afd1b
...
@@ -181,7 +181,8 @@ castFnName size signed =
...
@@ -181,7 +181,8 @@ castFnName size signed =
Number
n
->
Number
n
->
case
numberToInteger
n
of
case
numberToInteger
n
of
Just
v
->
show
v
Just
v
->
show
v
_
->
shortHash
size
_
->
error
$
"size cast width "
++
show
n
++
" is not an integer"
_
->
shortHash
size
_
->
shortHash
size
suffix
=
if
signed
then
"_signed"
else
""
suffix
=
if
signed
then
"_signed"
else
""
...
...
test/error/size_cast_x.sv
0 → 100644
View file @
789afd1b
// pattern: size cast width 1'bx is not an integer
module
top
;
initial
$
display
((
1'bx
)
'
(
2
))
;
endmodule
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment