Displaying 1 result from an estimated 1 matches for "fooxxx".
2015 Apr 05
4
[LLVMdev] Format of special case list for sanitizers
The documentation for the sanitizer special case list format[0] says,
> The meanining of * in regular expression for entity names is different - it is treated as in shell wildcarding.
In SpecialCaseList::parse, we see that this is just replacing * with .*:
// Replace * with .*
for (size_t pos = 0; (pos = Regexp.find("*", pos)) != std::string::npos;
pos +=