From e673875b3b99bf37f39869e99b7815fee3e19831 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Fri, 6 Mar 2020 07:31:56 -0500 Subject: [PATCH] Fix clang warning, last commit. --- src/V3AstNodes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/V3AstNodes.h b/src/V3AstNodes.h index 65ef1bcd7..7eec8a8a0 100644 --- a/src/V3AstNodes.h +++ b/src/V3AstNodes.h @@ -3996,7 +3996,7 @@ public: virtual bool cleanOut() const { return true; } virtual bool same(const AstNode* samep) const { return true; } virtual int instrCount() const { return widthInstrs(); } - AstNode* sizep() const { return sizep(); } + AstNode* sizep() const { return op1p(); } AstNode* rhsp() const { return op2p(); } };