mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-05-30 00:24:12 +08:00
sdc instance bus name matching
Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
@@ -44,7 +44,7 @@ public:
|
||||
PatternMatch(const char *pattern);
|
||||
PatternMatch(const char *pattern,
|
||||
const PatternMatch *inherit_from);
|
||||
PatternMatch(string pattern,
|
||||
PatternMatch(const string &pattern,
|
||||
const PatternMatch *inherit_from);
|
||||
bool match(const char *str) const;
|
||||
bool match(const string &str) const;
|
||||
|
||||
@@ -57,7 +57,7 @@ PatternMatch::PatternMatch(const char *pattern,
|
||||
compileRegexp();
|
||||
}
|
||||
|
||||
PatternMatch::PatternMatch(string pattern,
|
||||
PatternMatch::PatternMatch(const string &pattern,
|
||||
const PatternMatch *inherit_from) :
|
||||
pattern_(pattern.c_str()),
|
||||
is_regexp_(inherit_from->is_regexp_),
|
||||
|
||||
Reference in New Issue
Block a user