[PATCH] D27218: Prefix path when displaying thin archives

Rafael Avila de Espindola via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 29 17:51:53 PST 2016


Mark Santaniello via Phabricator <reviews at reviews.llvm.org> writes:

> +
> +  if (C.getParent()->isThin()) {
> +    outs() << sys::path::parent_path(ArchiveName);
> +    outs() << sys::path::get_separator();
> +  }
> +  

Avoid adding trailing whitespace.

LGTM with that fixed.

Thanks,
Rafael


More information about the llvm-commits mailing list