diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-07-25 13:01:45 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-07-25 13:01:45 +0200 |
commit | 50f22ff30c921c90f686879455117c7c2c9f96d5 (patch) | |
tree | 9ee57923c22af5d0559288452ca0c02f0747f2be /tests/simple/macros.v | |
parent | 0520bfea892291a131134411d587034fcd36bf1c (diff) |
Renamed some of the test cases in tests/simple to avoid name collisions
Diffstat (limited to 'tests/simple/macros.v')
-rw-r--r-- | tests/simple/macros.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/simple/macros.v b/tests/simple/macros.v index a3e8d70f..7b4d616e 100644 --- a/tests/simple/macros.v +++ b/tests/simple/macros.v @@ -237,7 +237,7 @@ end endmodule `define SIZE 4 // comment supported in this part -module test ( din_a, dout_a ); +module test_comment_in_macro ( din_a, dout_a ); input [`SIZE-1:0] din_a; output [`SIZE-1:0] dout_a; assign dout_a = din_a | `SIZE'ha; |