mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 21:46:05 +00:00
12 lines
225 B
Python
12 lines
225 B
Python
import re
|
|
import os
|
|
import sys
|
|
|
|
input_file = open(sys.argv[1])
|
|
output_file = open(sys.argv[2], 'w')
|
|
|
|
for line in input_file:
|
|
m = re.search('^\s+(clang_[^;]+)', line)
|
|
if m:
|
|
output_file.write(m.group(1) + "\n")
|