forked from OSchip/llvm-project
revert inadvertedly introduced build break
Summary: r288722 introduced a build break due some code that should not have been part of the commit. This change removes the offending code. Reviewers: davide, ruiu Differential Revision: https://reviews.llvm.org/D27435 llvm-svn: 288742
This commit is contained in:
parent
a114c46e87
commit
312fd0eea8
|
@ -357,15 +357,7 @@ Error LLVMOutputStyle::dumpGlobalsStream() {
|
|||
|
||||
auto Globals = File.getPDBGlobalsStream();
|
||||
if (!Globals)
|
||||
return handleErrors(Globals.takeError(),
|
||||
[&](const msf::MSFError &E) -> Error {
|
||||
if (E.Code == msf::msf_error_code::no_stream) {
|
||||
P.printString("Globals Stream not present");
|
||||
return Error::success();
|
||||
} else {
|
||||
return make_error<msf::MSFError>(E);
|
||||
}
|
||||
});
|
||||
return Globals.takeError();
|
||||
DictScope D(P, "Globals Stream");
|
||||
|
||||
auto Dbi = File.getPDBDbiStream();
|
||||
|
|
Loading…
Reference in New Issue