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
4e989bc0
Commit
4e989bc0
authored
Aug 05, 2024
by
Zachary Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove extra space after signed in scalar types
parent
1b273432
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
0 deletions
+7
-0
src/Language/SystemVerilog/AST/Type.hs
+1
-0
test/core/interface_input_type.sv.pat
+2
-0
test/core/param_typeof.sv.pat
+2
-0
test/core/unbased_unsized.sv.pat
+2
-0
No files found.
src/Language/SystemVerilog/AST/Type.hs
View file @
4e989bc0
...
...
@@ -57,6 +57,7 @@ instance Show Type where
show
(
Alias
xx
rs
)
=
printf
"%s%s"
xx
(
showRanges
rs
)
show
(
PSAlias
ps
xx
rs
)
=
printf
"%s::%s%s"
ps
xx
(
showRanges
rs
)
show
(
CSAlias
ps
pm
xx
rs
)
=
printf
"%s#%s::%s%s"
ps
(
showParams
pm
)
xx
(
showRanges
rs
)
show
(
Implicit
sg
[]
)
=
show
sg
show
(
Implicit
sg
rs
)
=
printf
"%s%s"
(
showPad
sg
)
(
dropWhile
(
==
' '
)
$
showRanges
rs
)
show
(
IntegerVector
kw
sg
rs
)
=
printf
"%s%s%s"
(
show
kw
)
(
showPadBefore
sg
)
(
showRanges
rs
)
show
(
IntegerAtom
kw
sg
)
=
printf
"%s%s"
(
show
kw
)
(
showPadBefore
sg
)
...
...
test/core/interface_input_type.sv.pat
0 → 100644
View file @
4e989bc0
reject wire signed x;
affirm wire signed x;
test/core/param_typeof.sv.pat
0 → 100644
View file @
4e989bc0
reject parameter signed[15:0] X = 0;
affirm parameter signed [15:0] X = 0;
test/core/unbased_unsized.sv.pat
View file @
4e989bc0
affirm ? (* foo *) (* bar *)
reject input wire [W + 1:1] b;
affirm input wire [W + 1:1] b;
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