From 53fa152fc4d5821157d7c51760fb446f590da7b5 Mon Sep 17 00:00:00 2001 From: Zachary Snow Date: Tue, 15 Feb 2022 18:02:41 +0100 Subject: [PATCH] upgrade to latest iverilog --- .github/workflows/main.yaml | 2 +- test/basic/typeof_op.sv | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 1a1654a..144fb51 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -41,7 +41,7 @@ jobs: - macOS-10.15 needs: build env: - IVERILOG_REF: 066eb0aca76f5bde06c63d67e605c07ef9f8be23 + IVERILOG_REF: 96a1cbf7b2866c41ba8fcdcc0f76f22590d08030 steps: - uses: actions/checkout@v1 - name: Install Dependencies (macOS) diff --git a/test/basic/typeof_op.sv b/test/basic/typeof_op.sv index e8e1e53..784f53a 100644 --- a/test/basic/typeof_op.sv +++ b/test/basic/typeof_op.sv @@ -43,12 +43,10 @@ module top; `TEST(4'b1011 + 5'b01110) `TEST(4'b1011 - 5'b01110) `TEST(4'b1011 ** 5'b01110) + `TEST(4'b1011 -> 5'b01110) `TEST(4'b1011 <-> 5'b01110) `TEST(4'b1011 ==? 5'b01110) `TEST(4'b1011 !=? 5'b01110) - // TODO: not yet supported by iverilog - // `TEST(4'b1011 -> 5'b01110) - end endmodule