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
a77347f5cce1ad4430b104852351b1d8d303d92b
a77347f5cce1ad4430b104852351b1d8d303d92b
Switch branch/tag
sv2v
test
lex
macro_whitespace.sv
Find file
Normal view
History
Permalink
macro_whitespace.sv
163 Bytes
Edit
Newer
Older
allow newlines before left paren of macro arguments
89e4f2a2
Zachary Snow
committed
5 years ago
1
2
3
4
5
6
7
8
9
10
11
12
`define
FOO
(
a
,
b
)
((
a
)
+
(
b
))
module
top
;
initial
begin
$
display
(
`FOO
(
1
,
2
))
;
end
endmodule