aboutsummaryrefslogtreecommitdiffstats
path: root/frontends
diff options
context:
space:
mode:
authorwhitequark <whitequark@whitequark.org>2021-01-28 21:32:27 +0000
committerGitHub <noreply@github.com>2021-01-28 21:32:27 +0000
commit74b0c385200d4282011c372d08e1e64b540d4132 (patch)
tree53e1add099b0428b2ce59587d9e99c95102a36b0 /frontends
parentd0d7a360edb08abf4dce6e37f61eea0a6e6ef045 (diff)
parent27257a419fe94e10f24eea916c56821e22e43cc5 (diff)
downloadyosys-74b0c385200d4282011c372d08e1e64b540d4132.tar.gz
yosys-74b0c385200d4282011c372d08e1e64b540d4132.tar.bz2
yosys-74b0c385200d4282011c372d08e1e64b540d4132.zip
Merge pull request #2569 from zachjs/macro-arg-surrounding-spaces
verilog: strip leading and trailing spaces in macro args
Diffstat (limited to 'frontends')
-rw-r--r--frontends/verilog/preproc.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/frontends/verilog/preproc.cc b/frontends/verilog/preproc.cc
index 5a2804a41..c451c4c20 100644
--- a/frontends/verilog/preproc.cc
+++ b/frontends/verilog/preproc.cc
@@ -390,12 +390,16 @@ static void input_file(std::istream &f, std::string filename)
// the argument list); false if we finished with ','.
static bool read_argument(std::string &dest)
{
+ skip_spaces();
std::vector<char> openers;
for (;;) {
std::string tok = next_token(true);
if (tok == ")") {
- if (openers.empty())
+ if (openers.empty()) {
+ while (dest.size() && (dest.back() == ' ' || dest.back() == '\t'))
+ dest = dest.substr(0, dest.size() - 1);
return true;
+ }
if (openers.back() != '(')
log_error("Mismatched brackets in macro argument: %c and %c.\n",
openers.back(), tok[0]);