We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f76d9da commit 758d4bfCopy full SHA for 758d4bf
llvm/tools/opt-viewer/optrecord.py
@@ -361,6 +361,6 @@ def find_opt_files(*dirs_or_files):
361
d for d in subdirs if not os.path.ismount(os.path.join(dir, d))
362
]
363
for file in files:
364
- if fnmatch.fnmatch(file, "*.opt.yaml*"):
+ if fnmatch.fnmatch(file, "*.opt.yaml*") or fnmatch.fnmatch(file, "*.opt.ld.yaml*"):
365
all.append(os.path.join(dir, file))
366
return all
0 commit comments