mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 20:22:41 +00:00
Internals: const-qualify findDType function. No functional change. (#3502)
This commit is contained in:
parent
b0e796ca83
commit
0dfa7d3af5
14
src/V3Ast.h
14
src/V3Ast.h
@ -1717,13 +1717,13 @@ public:
|
|||||||
void dtypeSetVoid() { dtypep(findVoidDType()); }
|
void dtypeSetVoid() { dtypep(findVoidDType()); }
|
||||||
|
|
||||||
// Data type locators
|
// Data type locators
|
||||||
AstNodeDType* findBitDType() { return findBasicDType(VBasicDTypeKwd::LOGIC); }
|
AstNodeDType* findBitDType() const { return findBasicDType(VBasicDTypeKwd::LOGIC); }
|
||||||
AstNodeDType* findDoubleDType() { return findBasicDType(VBasicDTypeKwd::DOUBLE); }
|
AstNodeDType* findDoubleDType() const { return findBasicDType(VBasicDTypeKwd::DOUBLE); }
|
||||||
AstNodeDType* findStringDType() { return findBasicDType(VBasicDTypeKwd::STRING); }
|
AstNodeDType* findStringDType() const { return findBasicDType(VBasicDTypeKwd::STRING); }
|
||||||
AstNodeDType* findSigned32DType() { return findBasicDType(VBasicDTypeKwd::INTEGER); }
|
AstNodeDType* findSigned32DType() const { return findBasicDType(VBasicDTypeKwd::INTEGER); }
|
||||||
AstNodeDType* findUInt32DType() { return findBasicDType(VBasicDTypeKwd::UINT32); }
|
AstNodeDType* findUInt32DType() const { return findBasicDType(VBasicDTypeKwd::UINT32); }
|
||||||
AstNodeDType* findUInt64DType() { return findBasicDType(VBasicDTypeKwd::UINT64); }
|
AstNodeDType* findUInt64DType() const { return findBasicDType(VBasicDTypeKwd::UINT64); }
|
||||||
AstNodeDType* findCHandleDType() { return findBasicDType(VBasicDTypeKwd::CHANDLE); }
|
AstNodeDType* findCHandleDType() const { return findBasicDType(VBasicDTypeKwd::CHANDLE); }
|
||||||
AstNodeDType* findEmptyQueueDType() const;
|
AstNodeDType* findEmptyQueueDType() const;
|
||||||
AstNodeDType* findVoidDType() const;
|
AstNodeDType* findVoidDType() const;
|
||||||
AstNodeDType* findQueueIndexDType() const;
|
AstNodeDType* findQueueIndexDType() const;
|
||||||
|
Loading…
Reference in New Issue
Block a user