forked from OSchip/llvm-project
parent
ec8a8b5437
commit
7f96b39151
|
@ -418,12 +418,8 @@ void Module::print(raw_ostream &OS, unsigned Indent) const {
|
|||
OS.indent(Indent + 2);
|
||||
OS << "export ";
|
||||
printModuleId(OS, UnresolvedExports[I].Id);
|
||||
if (UnresolvedExports[I].Wildcard) {
|
||||
if (UnresolvedExports[I].Id.empty())
|
||||
OS << "*";
|
||||
else
|
||||
OS << ".*";
|
||||
}
|
||||
if (UnresolvedExports[I].Wildcard)
|
||||
OS << (UnresolvedExports[I].Id.empty() ? "*" : ".*");
|
||||
OS << "\n";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue