summaryrefslogtreecommitdiffstats
path: root/lld/lib/Driver/InputGraph.cpp
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2013-11-05 01:37:40 +0000
committerRui Ueyama <ruiu@google.com>2013-11-05 01:37:40 +0000
commitc1800beb559c92ba4a22c62b5171ad54ac5f3b6c (patch)
tree73f15e06d98d55f2a3f12a46764b3a546406bb7e /lld/lib/Driver/InputGraph.cpp
parent1c8c3fe4b4705601a48dc126520ed9c355f9e956 (diff)
downloadbcm5719-llvm-c1800beb559c92ba4a22c62b5171ad54ac5f3b6c.tar.gz
bcm5719-llvm-c1800beb559c92ba4a22c62b5171ad54ac5f3b6c.zip
Remove unnecessary namespace qualifier.
llvm-svn: 194037
Diffstat (limited to 'lld/lib/Driver/InputGraph.cpp')
-rw-r--r--lld/lib/Driver/InputGraph.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/lib/Driver/InputGraph.cpp b/lld/lib/Driver/InputGraph.cpp
index 4d19fbc43ac..eaf02eb24ad 100644
--- a/lld/lib/Driver/InputGraph.cpp
+++ b/lld/lib/Driver/InputGraph.cpp
@@ -107,9 +107,9 @@ FileNode::readFile(const LinkingContext &ctx, raw_ostream &diagnostics,
return make_error_code(llvm::errc::no_such_file_or_directory);
// Create a memory buffer
- OwningPtr<llvm::MemoryBuffer> opmb;
+ OwningPtr<MemoryBuffer> opmb;
- if (error_code ec = llvm::MemoryBuffer::getFileOrSTDIN(*filePath, opmb))
+ if (error_code ec = MemoryBuffer::getFileOrSTDIN(*filePath, opmb))
return ec;
std::unique_ptr<MemoryBuffer> mb(opmb.take());
OpenPOWER on IntegriCloud