diff options
Diffstat (limited to 'test/features')
| -rw-r--r-- | test/features/BigInt.fir | 4 | ||||
| -rw-r--r-- | test/features/Printf.fir | 2 | ||||
| -rw-r--r-- | test/features/Stop.fir | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/test/features/BigInt.fir b/test/features/BigInt.fir index a8dadcfc..9060d705 100644 --- a/test/features/BigInt.fir +++ b/test/features/BigInt.fir @@ -5,6 +5,6 @@ circuit Top : node y = UInt("h100000") node z = UInt("h00") -;CHECK: node x = UInt("h2") -;CHECK: node z = UInt("h0") +;CHECK: node x = UInt<2>("h2") +;CHECK: node z = UInt<1>("h0") ;CHECK: Done! diff --git a/test/features/Printf.fir b/test/features/Printf.fir index d4d2f77d..912023af 100644 --- a/test/features/Printf.fir +++ b/test/features/Printf.fir @@ -17,5 +17,5 @@ circuit Top : ;CHECK: printf(clk, en, "Hello World!\n") ;CHECK: printf(clk, en, "Hello World! %x\n", x.y) ;CHECK: printf(clk, and(p, en), "In consequence\n") -;CHECK: printf(clk, and(eq(p, UInt("h0")), en), "In alternate\n") +;CHECK: printf(clk, and(eq(p, UInt<1>("h0")), en), "In alternate\n") ;CHECK: Done! diff --git a/test/features/Stop.fir b/test/features/Stop.fir index d0957324..bef64f0f 100644 --- a/test/features/Stop.fir +++ b/test/features/Stop.fir @@ -13,8 +13,8 @@ circuit Top : stop(clk,UInt(1),1) stop(clk,UInt(1),3) -;CHECK: stop(clk, and(p, UInt("h1")), 0) -;CHECK: stop(clk, and(q, UInt("h1")), 1) -;CHECK: stop(clk, UInt("h1"), 3) +;CHECK: stop(clk, and(p, UInt<1>("h1")), 0) +;CHECK: stop(clk, and(q, UInt<1>("h1")), 1) +;CHECK: stop(clk, UInt<1>("h1"), 3) ;CHECK: Done! |
