search for: used_prefix

Displaying 1 result from an estimated 1 matches for "used_prefix".

Did you mean: user_prefix
2014 Feb 13
2
[LLVMdev] Bad test health
...39;FileCheck' in runline: valid.add('CHECK') return valid def is_prefix(self, str): if str in self.ignored_str: return False for r in self.ignored_regs: if re.search(r, str): return False return True def scan_file(self, filename): used_prefixes = set() runlines = [] with open(filename) as f: curr_runline = '' for line in f.readlines(): match = self.prefix_re.search(line) if not match: continue prefix = match.group(1) or match.group(2) rest = match.group(3)...