summaryrefslogtreecommitdiffstats
path: root/lld/lib/Driver/WinLinkInputGraph.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lld/lib/Driver/WinLinkInputGraph.cpp')
-rw-r--r--lld/lib/Driver/WinLinkInputGraph.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/lib/Driver/WinLinkInputGraph.cpp b/lld/lib/Driver/WinLinkInputGraph.cpp
index 7db58628d05..60bfa47c1e6 100644
--- a/lld/lib/Driver/WinLinkInputGraph.cpp
+++ b/lld/lib/Driver/WinLinkInputGraph.cpp
@@ -15,9 +15,9 @@ namespace lld {
error_code PECOFFFileNode::parse(const LinkingContext &ctx,
raw_ostream &diagnostics) {
ErrorOr<StringRef> filePath = getPath(ctx);
- if (!filePath) {
+ if (error_code ec = filePath.getError()) {
diagnostics << "File not found: " << _path << "\n";
- return error_code(filePath);
+ return ec;
}
if (error_code ec = getBuffer(*filePath)) {
OpenPOWER on IntegriCloud