diff options
author | David Shah <dave@ds0.me> | 2020-02-02 14:53:46 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-02 14:53:46 +0000 |
commit | 9f5613100b360beb60608df1296ee81dc185e56c (patch) | |
tree | 177ca44cab76a864c3a1b89ea5b1eeaa64f750ba /frontends/ast/ast.h | |
parent | 1055b6b1dd7e4a557b33f6dc4bb14b09dcd582dc (diff) | |
parent | 22c967e35e23d0688081818f49a11f0ec0853bb1 (diff) | |
download | yosys-9f5613100b360beb60608df1296ee81dc185e56c.tar.gz yosys-9f5613100b360beb60608df1296ee81dc185e56c.tar.bz2 yosys-9f5613100b360beb60608df1296ee81dc185e56c.zip |
Merge pull request #1647 from YosysHQ/dave/sprintf
ast: Add support for $sformatf system function
Diffstat (limited to 'frontends/ast/ast.h')
-rw-r--r-- | frontends/ast/ast.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h index 918d178c7..14e1cec5e 100644 --- a/frontends/ast/ast.h +++ b/frontends/ast/ast.h @@ -244,6 +244,7 @@ namespace AST void replace_variables(std::map<std::string, varinfo_t> &variables, AstNode *fcall); AstNode *eval_const_function(AstNode *fcall); bool is_simple_const_expr(); + std::string process_format_str(const std::string &sformat, int next_arg, int stage, int width_hint, bool sign_hint); // create a human-readable text representation of the AST (for debugging) void dumpAst(FILE *f, std::string indent) const; |