diff options
| author | azidar | 2015-02-24 16:30:40 -0800 |
|---|---|---|
| committer | azidar | 2015-02-24 16:30:40 -0800 |
| commit | d0dddb37c056647e7fed4e9771650ef41f85bae3 (patch) | |
| tree | 8a72fc312aa8a0338b331454ce66fb9c81b173c6 /test | |
| parent | 2353d640907a7b04477b06a5b3da6b7bbafc448d (diff) | |
Rewrote README to include installation instructions and stanza justification. Added response to feedback, locatd in notes/feedbackQA*. Use two different mains, one for testing and one for deployment (make build vs make build-deploy).
Diffstat (limited to 'test')
| -rw-r--r-- | test/passes/infer-types/primops.fir | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/passes/infer-types/primops.fir b/test/passes/infer-types/primops.fir index fa0f0c90..dc47d9c6 100644 --- a/test/passes/infer-types/primops.fir +++ b/test/passes/infer-types/primops.fir @@ -4,5 +4,6 @@ circuit top : module top : wire io : {input x : UInt, output y : UInt} - io.x := add(io.x,io.y) -;CHECK: n:io:{input x : UInt, output y : UInt}.x := add(n:io:{input x : UInt, output y : UInt}.x, n:io:{input x : UInt, output y : UInt}.y) + wire a : UInt + a := io.x + |
