diff options
author | Rui Ueyama <ruiu@google.com> | 2016-01-06 20:11:55 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2016-01-06 20:11:55 +0000 |
commit | 83cd6e00e9997957f2f2bdbea449075d97374a56 (patch) | |
tree | 80f1ded7b6008d43ca1f212bd706612490450acf /lld/ELF/LinkerScript.cpp | |
parent | 3235c082531cc25e086f208c3be0dc0c2a4f0944 (diff) | |
download | bcm5719-llvm-83cd6e00e9997957f2f2bdbea449075d97374a56.tar.gz bcm5719-llvm-83cd6e00e9997957f2f2bdbea449075d97374a56.zip |
Remove unnecessary `lld::`.
llvm-svn: 256970
Diffstat (limited to 'lld/ELF/LinkerScript.cpp')
-rw-r--r-- | lld/ELF/LinkerScript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/LinkerScript.cpp b/lld/ELF/LinkerScript.cpp index 883b623f9e2..a6df9ed48cd 100644 --- a/lld/ELF/LinkerScript.cpp +++ b/lld/ELF/LinkerScript.cpp @@ -312,7 +312,7 @@ static bool isUnderSysroot(StringRef Path) { } // Entry point. The other functions or classes are private to this file. -void lld::elf2::readLinkerScript(BumpPtrAllocator *A, MemoryBufferRef MB) { +void elf2::readLinkerScript(BumpPtrAllocator *A, MemoryBufferRef MB) { StringRef Path = MB.getBufferIdentifier(); LinkerScript(A, MB.getBuffer(), isUnderSysroot(Path)).run(); } |