-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3802 from alainmarcel/alainmarcel-patch-1
unsized bug
- Loading branch information
Showing
7 changed files
with
848 additions
and
11 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
822 changes: 822 additions & 0 deletions
822
tests/BitSelectPartSelectInFunction/BitSelectPartSelectInFunction.log
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
tests/BitSelectPartSelectInFunction/BitSelectPartSelectInFunction.sl
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
-parse -d uhdm -d coveruhdm -elabuhdm -d ast dut.sv -nobuiltin |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
module top(output int o); | ||
typedef logic [4:0][1:0] box_t; | ||
|
||
assign o = int'(iota('1)); | ||
|
||
function automatic logic [1:0] iota(box_t state); | ||
box_t result; | ||
result[0][1:0] = state[0][1:0]; | ||
return result[0]; | ||
endfunction : iota | ||
|
||
endmodule | ||
|
||
|
Submodule googletest
updated
2 files
+1 −1 | ci/linux-presubmit.sh | |
+1 −1 | googlemock/test/gmock-spec-builders_test.cc |
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