1
Fork 0

Bless tidy

This commit is contained in:
Maybe Waffle 2023-03-23 11:12:03 +00:00
parent 8af42f695d
commit 904dd2c398
8 changed files with 11 additions and 11 deletions

View file

@ -1621,7 +1621,7 @@ impl<'a> Linker for AixLinker<'a> {
let path = tmpdir.join("list.exp");
let res: io::Result<()> = try {
let mut f = BufWriter::new(File::create(&path)?);
// TODO: use llvm-nm to generate export list.
// FIXME: use llvm-nm to generate export list.
for symbol in symbols {
debug!(" _{}", symbol);
writeln!(f, " {}", symbol)?;