summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReid Kleckner <rnk@google.com>2018-11-08 18:53:56 +0000
committerReid Kleckner <rnk@google.com>2018-11-08 18:53:56 +0000
commitf3dc9649ced6d3e5a2574bf939e2c8cfcfb9c465 (patch)
treef1a9988fe441fe2cebd152aa2a97826656b7c3b3
parent91dbd52890041a6ff494e007c5b42bea4d18b519 (diff)
downloadbcm5719-llvm-f3dc9649ced6d3e5a2574bf939e2c8cfcfb9c465.tar.gz
bcm5719-llvm-f3dc9649ced6d3e5a2574bf939e2c8cfcfb9c465.zip
Fix -Wextra-qualification warning
llvm-svn: 346431
-rw-r--r--lld/COFF/SymbolTable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/COFF/SymbolTable.cpp b/lld/COFF/SymbolTable.cpp
index 4a50e30e109..1a9e0455dc1 100644
--- a/lld/COFF/SymbolTable.cpp
+++ b/lld/COFF/SymbolTable.cpp
@@ -84,7 +84,7 @@ static Symbol *getSymbol(SectionChunk *SC, uint32_t Addr) {
return Candidate;
}
-std::string lld::coff::getSymbolLocations(ObjFile *File, uint32_t SymIndex) {
+std::string getSymbolLocations(ObjFile *File, uint32_t SymIndex) {
struct Location {
Symbol *Sym;
std::pair<StringRef, uint32_t> FileLine;
OpenPOWER on IntegriCloud