diff options
| author | Jack Koenig | 2017-06-21 09:35:15 -0700 |
|---|---|---|
| committer | Jack Koenig | 2017-06-21 10:18:20 -0700 |
| commit | 5135e9c6aeb1c9d472a5b29adb44a4acaf504fb8 (patch) | |
| tree | baa097e2bae57ac8f15e95793e5d53b170f1a656 /src/test/resources/features/HasDeadCode.fir | |
| parent | 4613ad2b519ae85fbab89e58d3304cf455514552 (diff) | |
Add --no-dce command-line option to skip DCE
Diffstat (limited to 'src/test/resources/features/HasDeadCode.fir')
| -rw-r--r-- | src/test/resources/features/HasDeadCode.fir | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/test/resources/features/HasDeadCode.fir b/src/test/resources/features/HasDeadCode.fir new file mode 100644 index 00000000..db87ff7a --- /dev/null +++ b/src/test/resources/features/HasDeadCode.fir @@ -0,0 +1,7 @@ +circuit HasDeadCode : + module HasDeadCode : + input i : UInt<1> + output o : UInt<1> + wire a : UInt<1> + a <= not(i) + o <= i |
