1
0
Fork 0

ValName: trim whitespace from symbol names

This commit is contained in:
Wesley W. Terpstra 2017-09-25 17:47:40 -07:00
parent fef5054cec
commit 0111213bea
1 changed files with 2 additions and 1 deletions

View File

@ -16,7 +16,8 @@ object ValNameImpl
if (s == `NoSymbol`) Nil else s +: allOwners(s.owner)
val terms = allOwners(c.internal.enclosingOwner).filter(_.isTerm).map(_.asTerm)
terms.filter(_.isVal).map(_.name.toString).find(_(0) != '$').map { s =>
c.Expr[ValNameImpl] { q"_root_.freechips.rocketchip.macros.ValNameImpl(${s})" }
val trim = s.replaceAll("\\s", "")
c.Expr[ValNameImpl] { q"_root_.freechips.rocketchip.macros.ValNameImpl(${trim})" }
}.getOrElse(c.abort(c.enclosingPosition, "Not a valid application."))
}
}